Skip to content

Commit

Permalink
fix: Change remote name in install test
Browse files Browse the repository at this point in the history
  • Loading branch information
jvfe committed Nov 30, 2024
1 parent d74217a commit 025d92e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/subworkflows/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_subworkflows_install_across_organizations(self):
# Verify that the installed_by entry was added correctly
modules_json = ModulesJson(self.pipeline_dir)
mod_json = modules_json.get_modules_json()
assert mod_json["repos"][CROSS_ORGANIZATION_URL]["modules"]["jvfe"]["fastqc"]["installed_by"] == [
assert mod_json["repos"][CROSS_ORGANIZATION_URL]["modules"]["nf-core-test"]["fastqc"]["installed_by"] == [
"fastq_trim_fastp_fastqc"
]

Expand All @@ -107,7 +107,7 @@ def test_subworkflow_install_with_same_module(self):
"installed_by"
] == ["modules"]

assert mod_json["repos"][CROSS_ORGANIZATION_URL]["modules"]["jvfe"]["fastqc"]["installed_by"] == [
assert mod_json["repos"][CROSS_ORGANIZATION_URL]["modules"]["nf-core-test"]["fastqc"]["installed_by"] == [
"fastq_trim_fastp_fastqc"
]

Expand Down

0 comments on commit 025d92e

Please sign in to comment.