Skip to content

Commit

Permalink
#2845 fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
arporter committed Jan 31, 2025
1 parent d8dd055 commit 4e1dc3e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/psyclone/tests/psyir/frontend/fparser2_include_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
from fparser.two import Fortran2003, C99Preprocessor
from fparser.two.utils import walk

from psyclone.configuration import Config
from psyclone.errors import GenerationError
from psyclone.psyir.frontend.fparser2 import Fparser2Reader

Expand Down Expand Up @@ -116,7 +115,7 @@ def test_include_exec_part_abort(parser, routine_type, config_instance):
# Check that any include path is correctly reported in the error message.
# Cannot use the setter for include_paths here as that checks the paths
# for validity.
config_instance._include_paths = ["/road/to", "/nowhere"]
config_instance._include_paths = ["/road/to", "/nowhere"]
with pytest.raises(GenerationError) as err:
processor.generate_psyir(prog)
assert ("This file must be made available by specifying its location with "
Expand Down

0 comments on commit 4e1dc3e

Please sign in to comment.