diff options
author | Munyoki Kilyungi | 2023-09-05 14:39:38 +0300 |
---|---|---|
committer | BonfaceKilz | 2023-09-05 14:57:51 +0300 |
commit | 259aec828fa3908eed62db9530db7d9efd72f136 (patch) | |
tree | 4308d35db61b6044b0d5da7b9c969f6c886cbf56 /tests/integration | |
parent | b1916a0c0f2656847f07a174f8e8f8a863f4d282 (diff) | |
download | genenetwork3-259aec828fa3908eed62db9530db7d9efd72f136.tar.gz |
Remove un-necessary string concatenation
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/test_gemma.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/test_gemma.py b/tests/integration/test_gemma.py index d8c07f4..79ddaca 100644 --- a/tests/integration/test_gemma.py +++ b/tests/integration/test_gemma.py @@ -382,7 +382,7 @@ class GemmaAPITest(unittest.TestCase): "snps": "snpfile.txt", } mock_hash.return_value = "hash" - response = self.app.post(("/api/gemma/k-gwa-compute/" "my-token")) + response = self.app.post(("/api/gemma/k-gwa-compute/my-token")) mock_hash.assert_called_with([ ('/tmp/cache/QmQPeNsJPyVWPFDVHb77w8G42Fvo15z4bG2X8D2GhfbSXc/' 'genotype.txt'), '/tmp/my-token/phenofile.txt', |