Skip to content

Commit

Permalink
[KARMAN-11003] assertThat fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GaMalhot committed Feb 4, 2024
1 parent 2198088 commit e226eab
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());
org.assertj.core.api.Assertions.assertThat((Map) Whitebox.getInternalState(actualCatalog, "properties"))
assertThat((Map) Whitebox.getInternalState(actualCatalog, "properties"))
.isEqualTo(Whitebox.getInternalState(CATALOG, "properties"));
}

Expand Down

0 comments on commit e226eab

Please sign in to comment.