diff options
author | Alexander Kabui | 2022-03-22 16:26:41 +0300 |
---|---|---|
committer | Alexander Kabui | 2022-03-22 16:26:41 +0300 |
commit | fde38c4a55a4b0a0d13db366a2434815fa378a1e (patch) | |
tree | ba806d5477eaeffa3b73d3a8569a50bfbc2a301a /tests/unit | |
parent | bb622cc5947e6ea896d3b94a1d2c4e0cbd1b26f9 (diff) | |
download | genenetwork3-fde38c4a55a4b0a0d13db366a2434815fa378a1e.tar.gz |
fix for wgcna tests
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/computations/test_wgcna.py | 2 |
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") |