Skip to content

Commit

Permalink
Fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Apr 29, 2024
1 parent f3da78b commit 26ba618
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ class MaskRuleConfigurationRepositoryTupleSwapperTest {

@Test
void assertSwapEmptyConfigurationToDataNodes() {
assertTrue(new MaskRuleConfigurationRepositoryTupleSwapper().swapToRepositoryTuples(new MaskRuleConfiguration(Collections.emptyList(), Collections.emptyMap())).isEmpty());
MaskRuleConfiguration ruleConfig = new MaskRuleConfiguration(Collections.emptyList(), Collections.emptyMap());
assertTrue(new MaskRuleConfigurationRepositoryTupleSwapper().swapToRepositoryTuples(ruleConfig).isEmpty());
}

@Test
Expand Down

0 comments on commit 26ba618

Please sign in to comment.