You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: flink-cdc-connect/flink-cdc-source-connectors/flink-connector-postgres-cdc/src/test/java/org/apache/flink/cdc/connectors/postgres/table/PostgreSQLConnectorITCase.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -197,7 +197,7 @@ public void testConsumingAllEvents()
197
197
"spare tire,22.200"
198
198
};
199
199
200
-
List<String> actual = TestValuesTableFactory.getResults("sink");
200
+
List<String> actual = TestValuesTableFactory.getResultsAsStrings("sink");
201
201
assertThat(actual, containsInAnyOrder(expected));
202
202
203
203
result.getJobClient().get().cancel().get();
@@ -271,7 +271,7 @@ public void testStartupFromLatestOffset() throws Exception {
271
271
String[] expected =
272
272
newString[] {"110,jacket,new water resistent white wind breaker,0.500"};
273
273
274
-
List<String> actual = TestValuesTableFactory.getResults("sink");
274
+
List<String> actual = TestValuesTableFactory.getResultsAsStrings("sink");
275
275
assertThat(actual, containsInAnyOrder(expected));
276
276
277
277
result.getJobClient().get().cancel().get();
@@ -459,7 +459,7 @@ public void testAllTypes() throws Throwable {
0 commit comments