Skip to content

Commit

Permalink
JDBDT: small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
edrdo committed May 10, 2017
1 parent 478c4f7 commit 5dd863c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jdbdt/JDBDT.java
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ public static void assertTableDoesNotExist(Table table) throws DBAssertionError
* @throws DBAssertionError If the assertion fails.
*/
public static void assertTableDoesNotExist(String message, Table table) throws DBAssertionError {
DBAssert.assertTableExistence(CallInfo.create(), table, false);
DBAssert.assertTableExistence(CallInfo.create(message), table, false);
}

/**
Expand Down

1 comment on commit 5dd863c

@edrdo
Copy link
Member Author

@edrdo edrdo commented on 5dd863c May 10, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#4

Please sign in to comment.