File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed
tests/integration/backward_compatible Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ def of(predicate, to_data):
130
130
anchor_data_list .append ((key , value ))
131
131
132
132
anchor_data_list_holder = AnchorDataListHolder (page_list , anchor_data_list )
133
- predicate_data = to_data (predicate )
133
+ predicate_data = to_data (predicate . _internal_predicate )
134
134
comparator_data = to_data (predicate .comparator )
135
135
iteration_type = predicate .iteration_type
136
136
Original file line number Diff line number Diff line change 3
3
import sys
4
4
from os .path import isfile
5
5
6
- SERVER_VERSION = "5.5.0-SNAPSHOT "
6
+ SERVER_VERSION = "5.5.0"
7
7
RC_VERSION = "0.8-SNAPSHOT"
8
8
9
9
RELEASE_REPO = "https://repo1.maven.apache.org/maven2"
Original file line number Diff line number Diff line change 28
28
write_string_to_writer ,
29
29
read_string_from_reader ,
30
30
)
31
- from tests .util import random_string , get_abs_path , skip_if_server_version_newer_than_or_equal
31
+ from tests .util import random_string , get_abs_path
32
32
from hazelcast import HazelcastClient
33
33
34
34
@@ -171,8 +171,6 @@ def test_false(self):
171
171
self .assertCountEqual (self .map .key_set (predicate ), [])
172
172
173
173
def test_paging (self ):
174
- # https://github.com/hazelcast/hazelcast-python-client/issues/666
175
- skip_if_server_version_newer_than_or_equal (self , self .client , "5.4" )
176
174
self .fill_map_numeric ()
177
175
predicate = paging (less ("this" , 4 ), 2 )
178
176
self .assertCountEqual ([0 , 1 ], self .map .key_set (predicate ))
@@ -341,8 +339,6 @@ def setUpClass(cls):
341
339
cls .map = cls .client .get_map (random_string ()).blocking ()
342
340
343
341
def setUp (self ):
344
- # https://github.com/hazelcast/hazelcast-python-client/issues/666
345
- skip_if_server_version_newer_than_or_equal (self , self .client , "5.4" )
346
342
self .map .clear ()
347
343
348
344
@classmethod
You can’t perform that action at this time.
0 commit comments