Skip to content

Commit

Permalink
[KARMAN-11003] gradle build fix for assert issue
Browse files Browse the repository at this point in the history
Signed-off-by: root <[email protected]>
  • Loading branch information
GaMalhot committed Feb 2, 2024
1 parent 59edabb commit cf33c95
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 cf33c95

Please sign in to comment.