We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d873526 commit 50ef7edCopy full SHA for 50ef7ed
src/test/java/net/sf/jsqlparser/statement/create/CreateTableTest.java
@@ -596,7 +596,7 @@ public void testRUBiSCreateList() throws Exception {
596
assertEquals(colsList.length, colsFound.size(), "stm:" + query);
597
598
for (int i = 0; i < colsList.length; i++) {
599
- assertEquals("stm:" + query, colsList[i], colsFound.get(i));
+ assertEquals(colsList[i], colsFound.get(i), "stm:" + query);
600
}
601
} catch (Exception e) {
602
throw new TestException("error at stm num: " + numSt + " " + query, e);
0 commit comments