Skip to content

Commit 50ef7ed

Browse files
committed
CreateTableTest
1 parent d873526 commit 50ef7ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/net/sf/jsqlparser/statement/create/CreateTableTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ public void testRUBiSCreateList() throws Exception {
596596
assertEquals(colsList.length, colsFound.size(), "stm:" + query);
597597

598598
for (int i = 0; i < colsList.length; i++) {
599-
assertEquals("stm:" + query, colsList[i], colsFound.get(i));
599+
assertEquals(colsList[i], colsFound.get(i), "stm:" + query);
600600
}
601601
} catch (Exception e) {
602602
throw new TestException("error at stm num: " + numSt + " " + query, e);

0 commit comments

Comments
 (0)