Skip to content

Commit

Permalink
fixed Snapshot integration test which was flaky
Browse files Browse the repository at this point in the history
due missing ordering
  • Loading branch information
Philipp Bogensberger committed Nov 3, 2015
1 parent 8cf061a commit ba02590
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ public void testRestoreOnlyOneTable() throws Exception {
execute("RESTORE SNAPSHOT " + snapshotName() + " TABLE my_table_1 with (" +
"wait_for_completion=true)");

execute("select schema_name || '.' || table_name from information_schema.tables where schema_name='doc'");
execute("select schema_name || '.' || table_name from information_schema.tables where schema_name='doc' order by 1");
assertThat(TestingHelpers.printedTable(response.rows()), is("doc.my_table_1\ndoc.my_table_2\n"));
}

Expand Down

0 comments on commit ba02590

Please sign in to comment.