aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/computations/test_correlation.py
diff options
context:
space:
mode:
authorAlexander Kabui2021-06-20 09:04:55 +0300
committerAlexander Kabui2021-06-20 09:04:55 +0300
commit864f231bbdbe2c3b3c96b0158a15811ac7790c3f (patch)
treed0d0eee217c984bd72ecfacc0b131848fcb5b89d /tests/unit/computations/test_correlation.py
parentb566a8950864a373f95ae2914b862e9846297b2d (diff)
downloadgenenetwork3-864f231bbdbe2c3b3c96b0158a15811ac7790c3f.tar.gz
make requested changes to biweight
Diffstat (limited to 'tests/unit/computations/test_correlation.py')
-rw-r--r--tests/unit/computations/test_correlation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/computations/test_correlation.py b/tests/unit/computations/test_correlation.py
index 606f96d..b1bc6ef 100644
--- a/tests/unit/computations/test_correlation.py
+++ b/tests/unit/computations/test_correlation.py
@@ -98,7 +98,7 @@ class TestCorrelation(TestCase):
self.assertEqual(results, expected_results)
- @mock.patch("gn3.computations.correlations.call_biweight_script")
+ @mock.patch("gn3.computations.correlations.calculate_biweight_corr")
def test_bicor(self, mock_biweight):
"""Test for doing biweight mid correlation """
mock_biweight.return_value = (1.0, 0.0)