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 6ac4172 commit 40d4c26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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://localhost:8125/get_semantic_matching_service",
"http://localhost:8000/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://localhost:8125/get_semantic_matching_service",
"http://localhost:8000/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://localhost:8125/get_semantic_matching_service",
"http://localhost:8000/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://localhost:8125/get_semantic_matching_service",
"http://localhost:8000/get_semantic_matching_service",
data=sms_request.model_dump_json()
)
self.assertEqual(
Expand Down
2 changes: 1 addition & 1 deletion test_resources/config.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 40d4c26

Please sign in to comment.