Skip to content

Commit 99c8225

Browse files
committed
Fix mock tests
1 parent e893182 commit 99c8225

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ jobs:
283283
{ extra: "1.69.0", server: $WEAVIATE_130},
284284
{ extra: "1.70.0", server: $WEAVIATE_131},
285285
{ extra: "1.71.0", server: $WEAVIATE_132},
286-
{ extra: "1.72.0", server: $WEAVIATE_133}
286+
{ extra: "1.71.0", server: $WEAVIATE_133}
287287
]
288288
steps:
289289
- name: Checkout

mock_tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def ready_mock(httpserver: HTTPServer):
5555

5656
@pytest.fixture(scope="function")
5757
def weaviate_mock(ready_mock: HTTPServer):
58-
ready_mock.expect_request("/v1/meta").respond_with_json({"version": "1.25"})
58+
ready_mock.expect_request("/v1/meta").respond_with_json({"version": "1.33.1"})
5959
ready_mock.expect_request("/v1/nodes").respond_with_json({"nodes": [{"gitHash": "ABC"}]})
6060

6161
yield ready_mock

0 commit comments

Comments
 (0)