Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
subodh1810 committed Sep 26, 2022
1 parent 38eea09 commit 8c42840
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,9 @@ protected void testDiscoverWithNullableCursorFields() throws Exception {
actual.getStreams().stream().filter(s -> s.getName().equalsIgnoreCase(TABLE_NAME_WITH_NULLABLE_CURSOR_TYPE)).findFirst().orElse(null);
assertNotNull(stream);
assertEquals(TABLE_NAME_WITH_NULLABLE_CURSOR_TYPE.toLowerCase(), stream.getName().toLowerCase());
assertEquals(1, stream.getSupportedSyncModes().size());
assertEquals(SyncMode.FULL_REFRESH, stream.getSupportedSyncModes().get(0));
assertEquals(2, stream.getSupportedSyncModes().size());
assertTrue(stream.getSupportedSyncModes().contains(SyncMode.FULL_REFRESH));
assertTrue(stream.getSupportedSyncModes().contains(SyncMode.INCREMENTAL));
}

protected AirbyteCatalog filterOutOtherSchemas(final AirbyteCatalog catalog) {
Expand Down

0 comments on commit 8c42840

Please sign in to comment.