Skip to content

Commit d8d6927

Browse files
committed
some dse decorator fixes
1 parent 3e2f616 commit d8d6927

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

tests/integration/standard/test_custom_protocol_handler.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from cassandra import ProtocolVersion, ConsistencyLevel
2424

2525
from tests.integration import use_singledc, PROTOCOL_VERSION, drop_keyspace_shutdown_cluster, \
26-
greaterthanorequalcass30, execute_with_long_wait_retry, greaterthanorequaldse51
26+
greaterthanorequalcass30, execute_with_long_wait_retry, greaterthanorequaldse51, greaterthanorequalcass3_10
2727
from tests.integration.datatype_utils import update_datatypes, PRIMITIVE_DATATYPES
2828
from tests.integration.standard.utils import create_table_with_all_types, get_all_primitive_params
2929
from six import binary_type
@@ -135,12 +135,11 @@ def test_protocol_divergence_v4_fail_by_flag_uses_int(self):
135135
self._protocol_divergence_fail_by_flag_uses_int(ProtocolVersion.V4, uses_int_query_flag=False,
136136
int_flag=True)
137137

138-
@greaterthanorequaldse51
138+
@greaterthanorequalcass3_10
139139
def test_protocol_v5_uses_flag_int(self):
140140
"""
141141
Test to validate that the _PAGE_SIZE_FLAG is treated correctly using write_uint for V5
142142
143-
@since DSE 2.0b3 GRAPH 1.0b1
144143
@jira_ticket PYTHON-694
145144
@expected_result the fetch_size=1 parameter will be honored
146145
@@ -154,7 +153,6 @@ def test_protocol_dsev1_uses_flag_int(self):
154153
"""
155154
Test to validate that the _PAGE_SIZE_FLAG is treated correctly using write_uint for DSE_V1
156155
157-
@since DSE 2.0b3 GRAPH 1.0b1
158156
@jira_ticket PYTHON-694
159157
@expected_result the fetch_size=1 parameter will be honored
160158
@@ -163,12 +161,11 @@ def test_protocol_dsev1_uses_flag_int(self):
163161
self._protocol_divergence_fail_by_flag_uses_int(ProtocolVersion.DSE_V1, uses_int_query_flag=True,
164162
int_flag=True)
165163

166-
@greaterthanorequaldse51
164+
@greaterthanorequalcass3_10
167165
def test_protocol_divergence_v5_fail_by_flag_uses_int(self):
168166
"""
169167
Test to validate that the _PAGE_SIZE_FLAG is treated correctly using write_uint for V5
170168
171-
@since DSE 2.0b3 GRAPH 1.0b1
172169
@jira_ticket PYTHON-694
173170
@expected_result the fetch_size=1 parameter will be honored
174171
@@ -182,7 +179,6 @@ def test_protocol_divergence_dsev1_fail_by_flag_uses_int(self):
182179
"""
183180
Test to validate that the _PAGE_SIZE_FLAG is treated correctly using write_uint for DSE_V1
184181
185-
@since DSE 2.0b3 GRAPH 1.0b1
186182
@jira_ticket PYTHON-694
187183
@expected_result the fetch_size=1 parameter will be honored
188184

0 commit comments

Comments
 (0)