about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorAlexander Kabui2021-03-30 23:58:02 +0300
committerAlexander Kabui2021-03-30 23:58:02 +0300
commitb88d63ac06f157a97cc88bee0ea702949a5a0c64 (patch)
tree60ad4156c27c2a2801c291bc5ed9d29a048e2ba5 /tests
parent31d9aeb1bf4686500406a809d0c5fa4b629125b0 (diff)
downloadgenenetwork3-b88d63ac06f157a97cc88bee0ea702949a5a0c64.tar.gz
refactor retrieve trait sample data and tests
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/computations/test_datasets.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/unit/computations/test_datasets.py b/tests/unit/computations/test_datasets.py
index 2cd58b2..408f13b 100644
--- a/tests/unit/computations/test_datasets.py
+++ b/tests/unit/computations/test_datasets.py
@@ -18,12 +18,18 @@ class TestDatasets(TestCase):
         dataset_id = "HC_M2_0606_P&"
         dataset_type = "Publish"
 
+        dataset = {
+            "id": dataset_id,
+            "type": dataset_type,
+            "name": dataset_id
+        }
+
         fetch_results = [('BXD32', 8.001, None, None, 'BXD32')]
 
         mock_fetch_sample_results.return_value = fetch_results
 
         results = retrieve_trait_sample_data(
-            dataset_id, dataset_type, trait_name)
+            dataset, trait_name)
         self.assertEqual(mock_fetch_sample_results.call_count, 1)
         self.assertEqual(results, fetch_results)