We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c327f6f commit d7db900Copy full SHA for d7db900
1 file changed
tests/test_graphkb/test_match.py
@@ -563,22 +563,6 @@ def test_structural_variants(self, conn):
563
assert type not in expected.get("does_not_matches", {}).get("type", [])
564
565
566
-class TestCacheMissingFeatures:
567
- def test_filling_cache(self):
568
- mock_conn = MagicMock(
569
- query=MagicMock(
570
- return_value=[
571
- {"name": "bob", "sourceId": "alice"},
572
- {"name": "KRAS", "sourceId": "1234"},
573
- ]
574
- )
575
576
- match.cache_missing_features(mock_conn)
577
- assert "kras" in match.FEATURES_CACHE
578
- assert "alice" in match.FEATURES_CACHE
579
- match.FEATURES_CACHE = None
580
-
581
582
class TestTypeScreening:
583
# Types as class variables
584
default_type = DEFAULT_NON_STRUCTURAL_VARIANT_TYPE
0 commit comments