aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/tests/unit/wqflask/api/test_correlation.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/wqflask/tests/unit/wqflask/api/test_correlation.py b/wqflask/tests/unit/wqflask/api/test_correlation.py
index 57986e80..50df2bb4 100644
--- a/wqflask/tests/unit/wqflask/api/test_correlation.py
+++ b/wqflask/tests/unit/wqflask/api/test_correlation.py
@@ -87,9 +87,7 @@ class TestCorrelations(unittest.TestCase):
mock_db.return_value.__enter__.return_value = conn
with conn.cursor() as cursor:
cursor.fetchone.side_effect = [
- AttributeSetter({"value": "V1"}),
- AttributeSetter({"value": "V2"}),
- AttributeSetter({"value": "V3"})]
+ ("V1", ), ("V2", ), ("V3", )]
this_trait = AttributeSetter({"geneid": "GH-1"})
target_dataset = AttributeSetter(
{"group": AttributeSetter({"species": "rat"})})