Skip to content

Commit

Permalink
Fix expected value in assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
scordio authored Jul 29, 2023
1 parent 289168b commit c3189c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void shouldGetDefaultTempDirFactorySupplierWithConfigParamSet() {

Supplier<TempDirFactory> supplier = configuration.getDefaultTempDirFactorySupplier();

assertThat(supplier.get()).isInstanceOf(TempDirFactory.class);
assertThat(supplier.get()).isInstanceOf(CustomFactory.class);
}

private static class CustomFactory implements TempDirFactory {
Expand Down

0 comments on commit c3189c6

Please sign in to comment.