aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorAlexander Kabui2022-03-22 16:26:41 +0300
committerAlexander Kabui2022-03-22 16:26:41 +0300
commitfde38c4a55a4b0a0d13db366a2434815fa378a1e (patch)
treeba806d5477eaeffa3b73d3a8569a50bfbc2a301a /tests/unit
parentbb622cc5947e6ea896d3b94a1d2c4e0cbd1b26f9 (diff)
downloadgenenetwork3-fde38c4a55a4b0a0d13db366a2434815fa378a1e.tar.gz
fix for wgcna tests
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/computations/test_wgcna.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/computations/test_wgcna.py b/tests/unit/computations/test_wgcna.py
index d6d2bf8..b42de50 100644
--- a/tests/unit/computations/test_wgcna.py
+++ b/tests/unit/computations/test_wgcna.py
@@ -127,7 +127,7 @@ class TestWgcna(TestCase):
wgcna_cmd = compose_rscript_cmd(
"wgcna.r", "/tmp/wgcna.json")
self.assertEqual(
- wgcna_cmd, "Rscript ./scripts/wgcna.r /tmp/wgcna.json")
+ wgcna_cmd, '"Rscript ./scripts/wgcna.r /tmp/wgcna.json"')
@pytest.mark.unit_test
@mock.patch("gn3.computations.wgcna.TMPDIR", "/tmp")