Skip to content

Commit ce23992

Browse files
Fix bool_pk expected data to use boolean values
1 parent 36c3a58 commit ce23992

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v2/sourcedb-to-spanner/src/test/java/com/google/cloud/teleport/v2/templates/MySQLDataTypesIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ private Map<String, List<Map<String, Object>>> getExpectedData() {
277277
"2005-01-01T00:01:54.123456000Z",
278278
"2037-12-30T23:59:59Z",
279279
"2038-01-18T23:59:59Z"));
280-
expectedData.put("bool_pk", createRows("bool_pk", "FALSE", "TRUE"));
280+
expectedData.put("bool_pk", createRows("bool_pk", false, true));
281281
expectedData.put("year_pk", createRows("year_pk", "1901", "2000"));
282282
return expectedData;
283283
}

0 commit comments

Comments
 (0)