You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/unit/org/apache/cassandra/db/guardrails/GuardrailAllowUncompressedTablesTest.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ public void createFailure() throws Throwable
52
52
{
53
53
setGuardrail(false);
54
54
Stringtable = createTableName();
55
-
assertFails(String.format("CREATE TABLE %s.%s (k int primary key, v int) WITH compression={'enabled':false}", KEYSPACE, table), "Uncompressed table is not allowed");
55
+
assertFails(String.format("CREATE TABLE %s.%s (k int primary key, v int) WITH compression={'enabled':false}", KEYSPACE, table), "Uncompressed table is not allowed");
56
56
}
57
57
58
58
@Test
@@ -61,7 +61,7 @@ public void alterSuccess()
61
61
setGuardrail(true);
62
62
Stringtable = createTableName();
63
63
schemaChange(String.format("CREATE TABLE %s.%s (k int primary key, v int)", KEYSPACE, table));
64
-
schemaChange(String.format("ALTER TABLE %s.%s WITH compression = {'enabled': false}", KEYSPACE, table));
64
+
schemaChange(String.format("ALTER TABLE %s.%s WITH compression = {'enabled': false}", KEYSPACE, table));
0 commit comments