From 42f8a0603655a6bfd7d597e13a7f28537007c564 Mon Sep 17 00:00:00 2001 From: cmungall Date: Tue, 1 Mar 2022 21:46:09 -0800 Subject: [PATCH] made URI more permissive to account for use as range of imports --- tests/test_utils/test_metamodelcore.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_utils/test_metamodelcore.py b/tests/test_utils/test_metamodelcore.py index fe76b9b8..dee675d0 100644 --- a/tests/test_utils/test_metamodelcore.py +++ b/tests/test_utils/test_metamodelcore.py @@ -48,8 +48,8 @@ def test_uris(self): URIorCURIE("1:def") with self.assertRaises(ValueError): URIorCURIE(" ") - with self.assertRaises(ValueError): - URIorCURIE("_") + #with self.assertRaises(ValueError): + # URIorCURIE("_") lax() URI(str2) URIorCURIE("1abc:def")