diff options
author | Alexander Kabui | 2021-05-30 13:26:15 +0300 |
---|---|---|
committer | GitHub | 2021-05-30 13:26:15 +0300 |
commit | 0500d974565320bcb6cf92139ed25c3196800032 (patch) | |
tree | 9c2b802b78b4540a341bd090502d8a7711adb8a1 /tests | |
parent | cd08b40a4c646ec4acc242f9ea93037e7df9966b (diff) | |
download | genenetwork3-0500d974565320bcb6cf92139ed25c3196800032.tar.gz |
fix index error (#16)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/computations/test_correlation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/computations/test_correlation.py b/tests/unit/computations/test_correlation.py index d264738..5746adf 100644 --- a/tests/unit/computations/test_correlation.py +++ b/tests/unit/computations/test_correlation.py @@ -276,7 +276,7 @@ class TestCorrelation(TestCase): input trait mouse gene id and mouse gene id """ - expected_db_results = [("val", x*0.1) + expected_db_results = [[x*0.1] for x in range(1, 4)] conn = DataBase(expected_results=expected_db_results) expected_results = ("1", 0.1) |