Skip to content

Commit

Permalink
Fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Nov 2, 2023
1 parent 3ba231d commit 243eaaa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private List<PipelineColumnMetaData> mockOrderColumnsMetaDataList() {

@Test
void assertWriteRowsEventWithoutCustomColumns() throws ReflectiveOperationException {
assertWriteRowsEvent0(null, 3);
assertWriteRowsEvent0(Collections.emptyMap(), 3);
}

@Test
Expand Down Expand Up @@ -157,7 +157,7 @@ private Map<LogicTableName, Collection<ColumnName>> mockTargetTableColumnsMap()

@Test
void assertUpdateRowsEventWithoutCustomColumns() throws ReflectiveOperationException {
assertUpdateRowsEvent0(null, 3);
assertUpdateRowsEvent0(Collections.emptyMap(), 3);
}

@Test
Expand All @@ -182,7 +182,7 @@ private void assertUpdateRowsEvent0(final Map<LogicTableName, Collection<ColumnN

@Test
void assertDeleteRowsEventWithoutCustomColumns() throws ReflectiveOperationException {
assertDeleteRowsEvent0(null, 3);
assertDeleteRowsEvent0(Collections.emptyMap(), 3);
}

@Test
Expand Down

0 comments on commit 243eaaa

Please sign in to comment.