diff --git a/test/test_resolving_service.py b/test/test_resolving_service.py index 8343296..539bf10 100644 --- a/test/test_resolving_service.py +++ b/test/test_resolving_service.py @@ -63,7 +63,7 @@ def test_semantic_matching_service_iri(self): semantic_id="foo://example.org:1234/over/there?name=bar#page=3", ) response = requests.get( - "http://localhost:8125/get_semantic_matching_service", + "http://localhost:8000/get_semantic_matching_service", data=sms_request.model_dump_json() ) self.assertEqual( @@ -76,7 +76,7 @@ def test_semantic_matching_service_irdi_eclass(self): semantic_id="0173-1#01-ACK323#017", ) response = requests.get( - "http://localhost:8125/get_semantic_matching_service", + "http://localhost:8000/get_semantic_matching_service", data=sms_request.model_dump_json() ) self.assertEqual( @@ -89,7 +89,7 @@ def test_semantic_matching_service_irdi_cdd(self): semantic_id="0112-1#01-ACK323#017", ) response = requests.get( - "http://localhost:8125/get_semantic_matching_service", + "http://localhost:8000/get_semantic_matching_service", data=sms_request.model_dump_json() ) self.assertEqual( @@ -102,7 +102,7 @@ def test_semantic_matching_service_fallback(self): semantic_id="nothing", ) response = requests.get( - "http://localhost:8125/get_semantic_matching_service", + "http://localhost:8000/get_semantic_matching_service", data=sms_request.model_dump_json() ) self.assertEqual( diff --git a/test_resources/config.ini b/test_resources/config.ini index ee3edbd..7c2ae7a 100644 --- a/test_resources/config.ini +++ b/test_resources/config.ini @@ -1,6 +1,6 @@ [SERVICE] endpoint=127.0.0.1 -port=8125 +port=8000 [RESOLVER] fallback_semantic_matching_service=https://example.org/fallback_semantic_matching_service