Skip to content

Commit

Permalink
Adapt ci, try different port for ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzsommer committed May 29, 2024
1 parent 445cb91 commit a90ba72
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 @@ -57,7 +57,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:8080/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://localhost:8080/get_semantic_matching_service",
"http://localhost:8125/get_semantic_matching_service",
data=sms_request.model_dump_json()
)
self.assertEqual(
Expand All @@ -95,7 +95,7 @@ def test_semantic_matching_service_irdi_cdd(self):
semantic_id="0112-1#01-ACK323#017",
)
response = requests.get(
"http://localhost:8080/get_semantic_matching_service",
"http://localhost:8125/get_semantic_matching_service",
data=sms_request.model_dump_json()
)
self.assertEqual(
Expand All @@ -114,7 +114,7 @@ def test_semantic_matching_service_fallback(self):
semantic_id="nothing",
)
response = requests.get(
"http://localhost:8080/get_semantic_matching_service",
"http://localhost:8125/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=8080
port=8125

[RESOLVER]
fallback_semantic_matching_service=https://example.org/fallback_semantic_matching_service
Expand Down

0 comments on commit a90ba72

Please sign in to comment.