Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
eddumelendez committed Aug 13, 2024
1 parent e5db72d commit 2314621
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,11 @@ public void testInitScriptWithLegacyCassandra() {
}

private void testInitScript(CassandraContainer cassandraContainer, boolean withCredentials) {
ResultSet resultSet =
performQuery(cassandraContainer, "SELECT * FROM keySpaceTest.catalog_category", withCredentials);
ResultSet resultSet = performQuery(
cassandraContainer,
"SELECT * FROM keySpaceTest.catalog_category",
withCredentials
);
assertThat(resultSet.wasApplied()).as("Query was applied").isTrue();
Row row = resultSet.one();
assertThat(row.getLong(0)).as("Inserted row is in expected state").isEqualTo(1);
Expand Down

0 comments on commit 2314621

Please sign in to comment.