From f18511285a232099c5b71d8f64483240024e5d6a Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Mon, 2 Dec 2024 13:26:41 +0100 Subject: [PATCH] Update test_extract.py --- tests/test_extract.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/test_extract.py b/tests/test_extract.py index 56ea646e..3624db17 100644 --- a/tests/test_extract.py +++ b/tests/test_extract.py @@ -4,7 +4,6 @@ import pandas as pd -import pyobo from pyobo import get_filtered_xrefs, get_id_name_mapping, get_xrefs_df from pyobo.constants import TARGET_ID, TARGET_PREFIX from pyobo.mocks import get_mock_get_xrefs_df @@ -53,11 +52,3 @@ def test_get_target_xrefs(self): self.assertFalse(value.startswith("kegg")) self.assertIsInstance(kegg_xrefs, dict) - - @mock_get_xrefs_df - def test_get_equivalent(self, _): - """Test getting equivalent CURIEs.""" - mapt_curies = pyobo.get_equivalent("hgnc:6893") - self.assertIn("ncbigene:4137", mapt_curies) - self.assertIn("ensembl:ENSG00000186868", mapt_curies) - self.assertNotIn("hgnc:6893", mapt_curies)