diff options
author | Frederick Muriuki Muriithi | 2024-01-29 10:52:25 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-01-30 07:18:25 +0300 |
commit | beacd99bfbc815ebd3ae37b060910a9a323ca5a2 (patch) | |
tree | 6985d179c9e5d56cccc419339b388b1f4e2567cc /test/requests | |
parent | e92b61cb38b308f1451d274f5483c5c575c75b14 (diff) | |
download | genenetwork2-beacd99bfbc815ebd3ae37b060910a9a323ca5a2.tar.gz |
Fix path in mechanical-rob tests
Diffstat (limited to 'test/requests')
-rw-r--r-- | test/requests/mapping_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requests/mapping_tests.py b/test/requests/mapping_tests.py index 19b22c21..85bd02bd 100644 --- a/test/requests/mapping_tests.py +++ b/test/requests/mapping_tests.py @@ -5,7 +5,7 @@ import requests from lxml.html import fromstring def load_data_from_file(): - filename = "../test/data/input/mapping/1435395_s_at_HC_M2_0606_P.json" + filename = "test/data/input/mapping/1435395_s_at_HC_M2_0606_P.json" file_handle = open(filename, "r") file_data = json.loads(file_handle.read().encode("utf-8")) return file_data |