aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-02-18 14:28:42 +0300
committerFrederick Muriuki Muriithi2022-02-18 14:28:42 +0300
commitde56919183e7b86cd3e495c6274174720dd9ae3a (patch)
tree2a18611259643c63af198cc5ad03744358d2ba42
parent75dcfe295af57b16428c586cc11dbaa827a5feba (diff)
downloadgenenetwork3-de56919183e7b86cd3e495c6274174720dd9ae3a.tar.gz
Remove erroneous test based on wrong assumptions
Related to commit 75dcfe295af57b16428c586cc11dbaa827a5feba This commit removes the related test that was checking for the wrong thing.
-rw-r--r--tests/unit/db/test_datasets.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/unit/db/test_datasets.py b/tests/unit/db/test_datasets.py
index 5b86db9..0b24489 100644
--- a/tests/unit/db/test_datasets.py
+++ b/tests/unit/db/test_datasets.py
@@ -23,9 +23,7 @@ class TestDatasetsDBFunctions(TestCase):
["Geno", 3, "genoTraitName", "genoDatasetName",
"Id, Name, FullName, ShortName", "GenoFreeze", {}],
["Publish", 6, "publishTraitName", "publishDatasetName",
- "Id, Name, FullName, ShortName", "PublishFreeze", {}],
- ["Temp", 4, "tempTraitName", "tempTraitName",
- "Id, Name, FullName, ShortName", "TempFreeze", {}]]:
+ "Id, Name, FullName, ShortName", "PublishFreeze", {}]]:
db_mock = mock.MagicMock()
with self.subTest(trait_type=trait_type):
with db_mock.cursor() as cursor: