Skip to content

Commit a629eae

Browse files
authored
Merge pull request scylladb#38 from riptano/python-1193
PYTHON-1193: Fix cloud test test_consistency_guardrails
2 parents 6826728 + 6c8a770 commit a629eae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/cloud/test_cloud.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ def test_match_system_local(self):
6969
def test_set_auth_provider(self):
7070
self.connect(self.creds)
7171
self.assertIsInstance(self.cluster.auth_provider, PlainTextAuthProvider)
72-
self.assertEqual(self.cluster.auth_provider.username, 'cassandra')
73-
self.assertEqual(self.cluster.auth_provider.password, 'cassandra')
72+
self.assertEqual(self.cluster.auth_provider.username, 'user1')
73+
self.assertEqual(self.cluster.auth_provider.password, 'user1')
7474

7575
def test_support_leaving_the_auth_unset(self):
7676
with self.assertRaises(NoHostAvailable):

0 commit comments

Comments
 (0)