Skip to content

Commit bb0ecb5

Browse files
Correct wrong expected type in test
1 parent 06a22fa commit bb0ecb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/javawebstack/orm/test/automigrate/CommonTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void testPrimitiveIntegerDatatype() throws SQLException {
7070

7171
columnDataTypeMap.put("byte_array", "varbinary(255)");
7272

73-
columnDataTypeMap.put("timestamp", "datetime(6)");
73+
columnDataTypeMap.put("timestamp", "timestamp(6)");
7474

7575
for(Map.Entry<String, String> entry : columnDataTypeMap.entrySet()) {
7676
checkedField = new Field(tableName, entry.getKey());

0 commit comments

Comments
 (0)