Skip to content

Commit 682be3c

Browse files
committed
linter/import fixes pre-1018
1 parent cea72fe commit 682be3c

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

tests/integration/standard/test_dse.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@
1919

2020

2121
from cassandra.cluster import Cluster
22-
from tests import notwindows, is_windows
23-
from tests.integration import use_cluster, CLUSTER_NAME, PROTOCOL_VERSION, execute_until_pass, \
24-
execute_with_long_wait_retry
22+
from tests import is_windows, notwindows
23+
from tests.integration import (CLUSTER_NAME, PROTOCOL_VERSION,
24+
execute_until_pass,
25+
execute_with_long_wait_retry, use_cluster)
2526

2627

2728
def setup_module():
@@ -45,14 +46,16 @@ def test_basic(self):
4546

4647
cluster = Cluster(protocol_version=PROTOCOL_VERSION)
4748
session = cluster.connect()
48-
result = execute_until_pass(session,
49+
result = execute_until_pass(
50+
session,
4951
"""
5052
CREATE KEYSPACE clustertests
5153
WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'}
5254
""")
5355
self.assertFalse(result)
5456

55-
result = execute_with_long_wait_retry(session,
57+
result = execute_with_long_wait_retry(
58+
session,
5659
"""
5760
CREATE TABLE clustertests.cf0 (
5861
a text,

0 commit comments

Comments
 (0)