Skip to content

Commit 1505c37

Browse files
committed
Fix expected value in test
1 parent 79bd439 commit 1505c37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v2/datastream-to-spanner/src/test/java/com/google/cloud/teleport/v2/templates/PostgreSQLDatastreamToSpannerDataTypesIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ private Map<String, List<Map<String, Object>>> getExpectedData() {
556556
result.put("json", createRows("{\"duplicate_key\":1}", "{\"null_key\":null}", "NULL"));
557557
result.put(
558558
"json_to_string",
559-
createRows("{\"duplicate_key\": 1, \"duplicate_k...", "{\"null_key\": null}", "NULL"));
559+
createRows("{\"duplicate_key\": 2", "{\"null_key\": null}", "NULL"));
560560
result.put("jsonb", createRows("{\"duplicate_key\":2}", "{\"null_key\":null}", "NULL"));
561561
result.put(
562562
"jsonb_to_string", createRows("{\"duplicate_key\": 2}", "{\"null_key\": null}", "NULL"));

0 commit comments

Comments
 (0)