diff options
author | zsloan | 2022-10-23 18:56:22 +0000 |
---|---|---|
committer | zsloan | 2022-10-23 18:56:22 +0000 |
commit | f03127d751cd629596c2595d700fbb044725e01c (patch) | |
tree | 645af2804add14218777d8b39e045080f1880eee /wqflask/tests | |
parent | 6285d5b626cc846850c95dff44a786449c8afca4 (diff) | |
download | genenetwork2-f03127d751cd629596c2595d700fbb044725e01c.tar.gz |
Inlcude redis_conn in MockGroup for get_samplelist
Diffstat (limited to 'wqflask/tests')
-rw-r--r-- | wqflask/tests/unit/wqflask/marker_regression/test_gemma_mapping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/tests/unit/wqflask/marker_regression/test_gemma_mapping.py b/wqflask/tests/unit/wqflask/marker_regression/test_gemma_mapping.py index 0d1bafc3..9d988597 100644 --- a/wqflask/tests/unit/wqflask/marker_regression/test_gemma_mapping.py +++ b/wqflask/tests/unit/wqflask/marker_regression/test_gemma_mapping.py @@ -16,7 +16,7 @@ class AttributeSetter: class MockGroup(AttributeSetter): - def get_samplelist(self): + def get_samplelist(self, redis_conn): return None |