Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nvnieuwk committed Oct 26, 2023
1 parent df78dfc commit 73831ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nf_core/modules/lint/module_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def module_tests(_, module):
nftest_testdir = os.path.join(module.component_dir, "tests")
if os.path.exists(nftest_testdir):
module.passed.append(("test_dir_exists", "nf-test test directory exists", nftest_testdir))
if os.path.exists(module.test_dir):
elif os.path.exists(module.test_dir):
module.passed.append(("test_dir_exists", "Test directory exists", module.test_dir))
else:
module.failed.append(("test_dir_exists", "Test directory is missing", module.test_dir))
Expand Down

0 comments on commit 73831ae

Please sign in to comment.