Skip to content

Commit

Permalink
[KARMAN-11003] gradle build fix for assert issue
Browse files Browse the repository at this point in the history
  • Loading branch information
GaMalhot committed Feb 2, 2024
1 parent c2a71a5 commit a1571fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void testCreateCatalogFromFactory() {
assertThat(actualCatalog instanceof PravegaCatalog).isTrue();
assertThat(((PravegaCatalog) actualCatalog).getName()).isEqualTo(CATALOG.getName());
assertThat(((PravegaCatalog) actualCatalog).getDefaultDatabase()).isEqualTo(CATALOG.getDefaultDatabase());
assertThat(Whitebox.getInternalState(actualCatalog, "properties"))
org.assertj.core.api.Assertions.assertThat((Map) Whitebox.getInternalState(actualCatalog, "properties"))
.isEqualTo(Whitebox.getInternalState(CATALOG, "properties"));
}

Expand Down

0 comments on commit a1571fb

Please sign in to comment.