diff options
author | zsloan | 2021-05-27 20:27:26 +0000 |
---|---|---|
committer | zsloan | 2021-05-27 20:27:26 +0000 |
commit | 37941d2724aaf22c1aeca18a77e4c17248c5b7bc (patch) | |
tree | 1f9d4106a50486336eeddfb97d1c653127d9ffc5 /wqflask | |
parent | 2c2e1dc3d4be635dbf73aab380e22acca6a2014b (diff) | |
download | genenetwork2-37941d2724aaf22c1aeca18a77e4c17248c5b7bc.tar.gz |
Updated test_run_mapping.py to account for attribute keys being checked as lowercase, though not sure if this will fully fix the test
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py b/wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py index 78cd3be9..c220a072 100644 --- a/wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py +++ b/wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py @@ -229,20 +229,20 @@ class TestRunMapping(unittest.TestCase): used_samples = ["S1", "S2"] sample_list = AttributeSetter({"sample_attribute_values": { "S1": { - "C1": "c1_value", - "C2": "c2_value", - "W1": "w1_value" + "c1": "c1_value", + "c2": "c2_value", + "w1": "w1_value" }, "S2": { - "W1": "w2_value", - "W2": "w2_value" + "w1": "w2_value", + "w2": "w2_value" }, "S3": { - "C1": "c1_value", - "C2": "c2_value" + "c1": "c1_value", + "c2": "c2_value" }, |