diff options
author | Frederick Muriuki Muriithi | 2022-07-29 03:39:32 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-07-29 03:53:49 +0300 |
commit | e3622ac213ef6e1be8a38959f7c6ee082c112c95 (patch) | |
tree | b8416a7fbceb8e228c253db6dace099702e4fd4f /tests/integration | |
parent | 921b5fe752e4a947595a86572592d5bbdeb16ead (diff) | |
download | genenetwork3-e3622ac213ef6e1be8a38959f7c6ee082c112c95.tar.gz |
Fix failing tests
* gn3/computations/correlations.py: rename function
* mypy.ini: deactivate mypy error about missing imports
* tests/integration/test_correlation.py: mock correct function
* tests/unit/computations/test_correlation.py: test correct function
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 d52ab01..c1d518d 100644 --- a/tests/integration/test_correlation.py +++ b/tests/integration/test_correlation.py @@ -12,7 +12,7 @@ class CorrelationIntegrationTest(TestCase): self.app = create_app().test_client() @pytest.mark.integration_test - @mock.patch("gn3.api.correlation.compute_all_sample_correlation") + @mock.patch("gn3.api.correlation.run_sample_corr_cmd") def test_sample_r_correlation(self, mock_compute_samples): """Test /api/correlation/sample_r/{method}""" this_trait_data = { |