From 6e9d191f4b46c81a33b6c6a9f331ae3a03398b35 Mon Sep 17 00:00:00 2001 From: Milo Thurston Date: Wed, 12 Jun 2024 10:53:48 +0100 Subject: [PATCH] Corrected values for test_get_ontology. --- tests/utils/test_isatools_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/utils/test_isatools_utils.py b/tests/utils/test_isatools_utils.py index b7f1a8b2..a36369cc 100644 --- a/tests/utils/test_isatools_utils.py +++ b/tests/utils/test_isatools_utils.py @@ -84,10 +84,10 @@ def test_get_ontology(self): self.assertEqual(ontology_source.name, 'efo') self.assertEqual( ontology_source.file, - 'https://www.ebi.ac.uk/ols/api/ontologies/efo') + 'https://www.ebi.ac.uk/ols4/api/ontologies/efo?lang=en') self.assertIsInstance(ontology_source.version, str) self.assertEqual( - ontology_source.description, '') + ontology_source.description, 'Experimental Factor Ontology') def test_search_for_term(self): ontology_source = ols.get_ols_ontology('efo')