use PROTOCOL_VERSION for bounded dictionary tests
This commit is contained in:
@@ -122,7 +122,7 @@ class PreparedStatementTests(unittest.TestCase):
|
|||||||
with dict bindings
|
with dict bindings
|
||||||
"""
|
"""
|
||||||
|
|
||||||
cluster = Cluster()
|
cluster = Cluster(protocol_version=PROTOCOL_VERSION)
|
||||||
session = cluster.connect()
|
session = cluster.connect()
|
||||||
|
|
||||||
prepared = session.prepare(
|
prepared = session.prepare(
|
||||||
@@ -156,7 +156,7 @@ class PreparedStatementTests(unittest.TestCase):
|
|||||||
with dict bindings
|
with dict bindings
|
||||||
"""
|
"""
|
||||||
|
|
||||||
cluster = Cluster()
|
cluster = Cluster(protocol_version=PROTOCOL_VERSION)
|
||||||
session = cluster.connect()
|
session = cluster.connect()
|
||||||
|
|
||||||
prepared = session.prepare(
|
prepared = session.prepare(
|
||||||
@@ -203,7 +203,7 @@ class PreparedStatementTests(unittest.TestCase):
|
|||||||
Ensure binding None is handled correctly with dict bindings
|
Ensure binding None is handled correctly with dict bindings
|
||||||
"""
|
"""
|
||||||
|
|
||||||
cluster = Cluster()
|
cluster = Cluster(protocol_version=PROTOCOL_VERSION)
|
||||||
session = cluster.connect()
|
session = cluster.connect()
|
||||||
|
|
||||||
|
|
||||||
@@ -260,7 +260,7 @@ class PreparedStatementTests(unittest.TestCase):
|
|||||||
Ensure None binding over async queries with dict bindings
|
Ensure None binding over async queries with dict bindings
|
||||||
"""
|
"""
|
||||||
|
|
||||||
cluster = Cluster()
|
cluster = Cluster(protocol_version=PROTOCOL_VERSION)
|
||||||
session = cluster.connect()
|
session = cluster.connect()
|
||||||
|
|
||||||
prepared = session.prepare(
|
prepared = session.prepare(
|
||||||
|
|||||||
Reference in New Issue
Block a user