From 87a8dbfa789962d186ed2f2ce355827b3ba8a340 Mon Sep 17 00:00:00 2001 From: Alok Saldanha Date: Tue, 21 Dec 2021 13:56:29 -0500 Subject: [PATCH] #57 Reverted incorrect change to unit test --- tests/test_subprocess_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_subprocess_backend.py b/tests/test_subprocess_backend.py index 62652bf..5c22dbf 100644 --- a/tests/test_subprocess_backend.py +++ b/tests/test_subprocess_backend.py @@ -33,7 +33,7 @@ class TestSubprocessBackend(unittest.TestCase): backend.launch(cellxgene_loc, scripts, entry) popen.assert_called_once_with( [ - "yes | /some/cellxgene launch /tmp/czi/pbmc3k.h5ad --port 8000 --host 127.0.0.1 --disable-annotations --disable-gene-sets-save --scripts http://example.com/script.js --scripts http://example.com/script2.js" + "yes | /some/cellxgene launch /tmp/czi/pbmc3k.h5ad --port 8000 --host 127.0.0.1 --disable-annotations --scripts http://example.com/script.js --scripts http://example.com/script2.js" ], shell=True, stderr=-1,