From 599dc7a0251ad7e14ffebd576fac703033411438 Mon Sep 17 00:00:00 2001 From: Abe Ratnofsky Date: Fri, 4 Apr 2025 12:20:53 -0400 Subject: [PATCH] Fix test failure: cqlshlib.test.test_cqlsh_output.TestCqlshOutput::test_describe_schema_output --- pylib/cqlshlib/test/test_cqlsh_output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylib/cqlshlib/test/test_cqlsh_output.py b/pylib/cqlshlib/test/test_cqlsh_output.py index c32690b424..580e302c7a 100644 --- a/pylib/cqlshlib/test/test_cqlsh_output.py +++ b/pylib/cqlshlib/test/test_cqlsh_output.py @@ -794,7 +794,7 @@ class TestCqlshOutput(BaseTestCase): self.assertNoHasColors(output) # Since CASSANDRA-7622 'DESC FULL SCHEMA' also shows all VIRTUAL keyspaces self.assertIn('VIRTUAL KEYSPACE system_virtual_schema', output) - self.assertIn("\nCREATE KEYSPACE system_auth WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'} AND durable_writes = true AND fast_path = 'simple';\n", + self.assertIn("\nCREATE KEYSPACE system_auth WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'} AND durable_writes = true AND fast_path = 'simple' AND replication_type = 'untracked';\n", output) self.assertRegex(output, r'.*\s*$')