diff options
author | Alexander Kabui | 2021-08-11 09:18:19 +0300 |
---|---|---|
committer | GitHub | 2021-08-11 09:18:19 +0300 |
commit | 95eb105421d7fbe0b0ebf1de2f89a558eecbf0da (patch) | |
tree | aadc8d5b9b066214dc102c762de5a6a0aa13d0b1 /tests/integration | |
parent | e0476d51603432f60b6412b65486166deabe9e08 (diff) | |
download | genenetwork3-95eb105421d7fbe0b0ebf1de2f89a558eecbf0da.tar.gz |
use normal function for correlation (#34)
* use normal function for correlation + rename functions
* update test for sample correlation
* use normal function for tissue correlation + rename functions
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/test_correlation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/test_correlation.py b/tests/integration/test_correlation.py index e67f58d..bdd9bce 100644 --- a/tests/integration/test_correlation.py +++ b/tests/integration/test_correlation.py @@ -80,7 +80,7 @@ class CorrelationIntegrationTest(TestCase): self.assertEqual(mock_compute_corr.call_count, 1) self.assertEqual(response.status_code, 200) - @mock.patch("gn3.api.correlation.compute_all_tissue_correlation") + @mock.patch("gn3.api.correlation.compute_tissue_correlation") def test_tissue_correlation(self, mock_tissue_corr): """Test api/correlation/tissue_corr/{corr_method}""" mock_tissue_corr.return_value = {} |