We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289168b commit 59141b9Copy full SHA for 59141b9
junit-jupiter-engine/src/test/java/org/junit/jupiter/engine/config/DefaultJupiterConfigurationTests.java
@@ -122,7 +122,7 @@ void shouldGetDefaultTempDirFactorySupplierWithConfigParamSet() {
122
123
Supplier<TempDirFactory> supplier = configuration.getDefaultTempDirFactorySupplier();
124
125
- assertThat(supplier.get()).isInstanceOf(TempDirFactory.class);
+ assertThat(supplier.get()).isInstanceOf(CustomFactory.class);
126
}
127
128
private static class CustomFactory implements TempDirFactory {
0 commit comments