Skip to content

Commit

Permalink
Fix drop table test to use correct table
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed Apr 22, 2015
1 parent b711196 commit 3ef9ad5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public void testDropTableIfExists()
throws Exception
{
assertFalse(queryRunner.tableExists(getSession(), "test_drop_if_exists"));
assertQueryTrue("DROP TABLE IF EXISTS test_create");
assertQueryTrue("DROP TABLE IF EXISTS test_drop_if_exists");
assertFalse(queryRunner.tableExists(getSession(), "test_drop_if_exists"));
}

Expand Down

0 comments on commit 3ef9ad5

Please sign in to comment.