diff options
author | Alexander Kabui | 2021-04-05 14:34:01 +0300 |
---|---|---|
committer | Alexander Kabui | 2021-04-05 14:34:01 +0300 |
commit | a301093ce9ea825606db29bd1f1f40e1971897dd (patch) | |
tree | 10f0ee83b127a5cb907eb66dfe9955b44a0cd105 /tests/integration/test_traits.py | |
parent | 2301b11e8a975f2e6dc7e5144e4b26c34b186501 (diff) | |
download | genenetwork3-a301093ce9ea825606db29bd1f1f40e1971897dd.tar.gz |
fix for fetching dataset traits data
Diffstat (limited to 'tests/integration/test_traits.py')
-rw-r--r-- | tests/integration/test_traits.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/integration/test_traits.py b/tests/integration/test_traits.py index 2f3433a..7cf0a9f 100644 --- a/tests/integration/test_traits.py +++ b/tests/integration/test_traits.py @@ -26,7 +26,13 @@ class TraitIntegrationTest(TestCase): trait_results = { "dataset": None, "trait_name": "1449593_at", - "trait_data": {} + "trait_data": { + "BXD11": 8.464, + "BXD12": 8.414, + "BXD13": 8.753, + "BXD15": 8.5, + "BXD16": 8.832 + } } mock_fetch_trait.return_value = trait_results |