aboutsummaryrefslogtreecommitdiff
path: root/wqflask/tests
diff options
context:
space:
mode:
authorzsloan2021-05-27 20:27:26 +0000
committerzsloan2021-05-27 20:27:26 +0000
commit37941d2724aaf22c1aeca18a77e4c17248c5b7bc (patch)
tree1f9d4106a50486336eeddfb97d1c653127d9ffc5 /wqflask/tests
parent2c2e1dc3d4be635dbf73aab380e22acca6a2014b (diff)
downloadgenenetwork2-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/tests')
-rw-r--r--wqflask/tests/unit/wqflask/marker_regression/test_run_mapping.py14
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"
},