Skip to content

Commit 7043f9c

Browse files
authored
Fix version criterion for test and feature
1 parent 96b1a9b commit 7043f9c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/entry/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ def _get_test_files_directory():
7171
"/tmp/test_files"
7272
)
7373

74-
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_10_0 = meets_version(
75-
get_server_version(core._global_server()), "10.0"
74+
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_11_0 = meets_version(
75+
get_server_version(core._global_server()), "11.0"
7676
)
7777
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_8_1 = meets_version(
7878
get_server_version(core._global_server()), "8.1"

tests/test_field.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
import conftest
3838
from conftest import (
3939
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_8_0,
40-
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_10_0,
40+
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_11_0,
4141
running_docker,
4242
)
4343

@@ -1427,7 +1427,7 @@ def test_deep_copy_big_field_remote(server_type, server_type_remote_process):
14271427

14281428

14291429
@pytest.mark.skipif(
1430-
not SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_10_0, reason="Available for servers >=10.0"
1430+
not SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_11_0, reason="Available for servers >=11.0"
14311431
)
14321432
def test_set_units():
14331433
data = np.random.random(100)

0 commit comments

Comments
 (0)