Skip to content

Commit aa770e0

Browse files
committed
test(subworkflows): Remove unused mock
1 parent 816c6b9 commit aa770e0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/test_subworkflows.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,9 @@ def create_modules_repo_dummy(tmp_dir):
3030
with open(os.path.join(root_dir, ".nf-core.yml"), "w") as fh:
3131
fh.writelines(["repository_type: modules", "\n", "org_path: nf-core", "\n"])
3232

33-
# FIXME This mock isn't used
34-
with responses.RequestsMock() as rsps:
35-
subworkflow_create = nf_core.subworkflows.SubworkflowCreate(root_dir, "test_subworkflow", "@author", True)
36-
subworkflow_create.create()
33+
# TODO Add a mock here
34+
subworkflow_create = nf_core.subworkflows.SubworkflowCreate(root_dir, "test_subworkflow", "@author", True)
35+
subworkflow_create.create()
3736

3837
return root_dir
3938

0 commit comments

Comments
 (0)