Skip to content

Commit

Permalink
Reduce number of lines in test module to appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
reuterbal committed Nov 10, 2023
1 parent 8e7dbd9 commit 443da5b
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions tests/test_frontends.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,7 @@ def test_check_alloc_opts(here, frontend):

@pytest.mark.parametrize('frontend', available_frontends())
def test_associates(here, frontend):
"""
Test the use of associate to access and modify other items
"""
"""Test the use of associate to access and modify other items"""

fcode = """
module derived_types_mod
Expand Down Expand Up @@ -255,9 +253,7 @@ def test_associates_deferred(frontend):

@pytest.mark.parametrize('frontend', available_frontends())
def test_associates_expr(here, frontend):
"""
Verify that associates with expressions are supported
"""
"""Verify that associates with expressions are supported"""
fcode = """
subroutine associates_expr(in, out)
implicit none
Expand Down Expand Up @@ -296,9 +292,7 @@ def test_associates_expr(here, frontend):

@pytest.mark.parametrize('frontend', available_frontends())
def test_enum(here, frontend):
"""
Verify that enums are represented correctly
"""
"""Verify that enums are represented correctly"""
# F2008, Note 4.67
fcode = """
subroutine test_enum (out)
Expand Down

0 comments on commit 443da5b

Please sign in to comment.