Skip to content

Commit df458d2

Browse files
committed
Fix test version compare
1 parent 7d7c0cf commit df458d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ def use_cluster(cluster_name, nodes, ipformat=None, start=True, workloads=None,
530530
if Version(dse_version) >= Version('5.0'):
531531
CCM_CLUSTER.set_configuration_options({'enable_user_defined_functions': True})
532532
CCM_CLUSTER.set_configuration_options({'enable_scripted_user_defined_functions': True})
533-
if dse_version >= Version('5.1'):
533+
if Version(dse_version) >= Version('5.1'):
534534
# For Inet4Address
535535
CCM_CLUSTER.set_dse_configuration_options({
536536
'graph': {

0 commit comments

Comments
 (0)