Skip to content

Commit e28335c

Browse files
committed
Fix integration test failures for TextImportPipelineIT
1 parent 8480654 commit e28335c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

v1/src/test/java/com/google/cloud/teleport/templates/TextImportPipelineIT.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ public void testImportCsvBadRows() throws IOException {
241241
"FirstName",
242242
"LastName",
243243
"Active",
244+
"Rating",
244245
"Score",
245246
"BirthDate",
246247
"LastModified"));
@@ -279,7 +280,7 @@ public void testImportCsvToPostgres() throws IOException {
279280
+ " \"FirstName\" character varying(256),\n"
280281
+ " \"LastName\" character varying(256),\n"
281282
+ " \"Active\" boolean,\n"
282-
+ " \"Rating\" real,\n"
283+
+ " \"Rating\" real,\n"
283284
+ " \"Score\" double precision,\n"
284285
+ " \"BirthDate\" date,\n"
285286
+ " \"LastModified\" timestamp with time zone,\n"
@@ -339,6 +340,7 @@ public void testImportCsvToPostgres() throws IOException {
339340
"FirstName",
340341
"LastName",
341342
"Active",
343+
"Rating",
342344
"Score",
343345
"BirthDate",
344346
"LastModified"));

0 commit comments

Comments
 (0)