From b2e0236b773ada14df80114078e52ce1f314c7ea Mon Sep 17 00:00:00 2001 From: Erik Danielsson Date: Wed, 7 Jul 2021 15:42:26 +0200 Subject: [PATCH] 'fix' tests --- tests/modules/install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/modules/install.py b/tests/modules/install.py index 399d7f4aa..c9ea65d10 100644 --- a/tests/modules/install.py +++ b/tests/modules/install.py @@ -25,14 +25,14 @@ def test_modules_install_nomodule(self): def test_modules_install_trimgalore(self): """Test installing a module - TrimGalore!""" assert self.mods_install.install("trimgalore") is not False - module_path = os.path.join(self.mods_install.dir, "modules", "nf-core", "software", "trimgalore") + module_path = os.path.join(self.mods_install.dir, "modules", "nf-core", "modules", "trimgalore") assert os.path.exists(module_path) def test_modules_install_trimgalore_alternative_source(self): """Test installing a module from a different source repository - TrimGalore!""" assert self.mods_install_alt.install("trimgalore") is not False - module_path = os.path.join(self.mods_install.dir, "modules", "external", "trimgalore") + module_path = os.path.join(self.mods_install.dir, "modules", "ewels", "nf-core-modules", "trimgalore") assert os.path.exists(module_path)