Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
equinor-ruaj committed Oct 10, 2024
1 parent 2e33208 commit dfc2f43
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,7 @@ def test_find_datafiles_reek(real, nrdfiles):
assert (
len(datafiles) == nrdfiles
), f"Haven't found correct nr of datafiles {nrdfiles} files but {len(datafiles)} ({datafiles})"
for datafile in datafiles:
found_path = datafile
for found_path in datafiles:
parent = found_path.parent.parent.name
assert parent in expected_tools, f"|{parent}| not in {expected_tools}"
correct_suff = ".DATA"
Expand Down

0 comments on commit dfc2f43

Please sign in to comment.