Skip to content

Commit

Permalink
Adapt ci
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzsommer committed May 29, 2024
1 parent 5b524b0 commit 6ac4172
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_resolving_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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://127.0.0.1:8125/get_semantic_matching_service",
"http://localhost:8125/get_semantic_matching_service",
data=sms_request.model_dump_json()
)
self.assertEqual(
Expand All @@ -76,7 +76,7 @@ def test_semantic_matching_service_irdi_eclass(self):
semantic_id="0173-1#01-ACK323#017",
)
response = requests.get(
"http://127.0.0.1:8125/get_semantic_matching_service",
"http://localhost:8125/get_semantic_matching_service",
data=sms_request.model_dump_json()
)
self.assertEqual(
Expand All @@ -89,7 +89,7 @@ def test_semantic_matching_service_irdi_cdd(self):
semantic_id="0112-1#01-ACK323#017",
)
response = requests.get(
"http://127.0.0.1:8125/get_semantic_matching_service",
"http://localhost:8125/get_semantic_matching_service",
data=sms_request.model_dump_json()
)
self.assertEqual(
Expand All @@ -102,7 +102,7 @@ def test_semantic_matching_service_fallback(self):
semantic_id="nothing",
)
response = requests.get(
"http://127.0.0.1:8125/get_semantic_matching_service",
"http://localhost:8125/get_semantic_matching_service",
data=sms_request.model_dump_json()
)
self.assertEqual(
Expand Down

0 comments on commit 6ac4172

Please sign in to comment.