Skip to content

Commit

Permalink
Change the reflection-based test to match the recent renaming.
Browse files Browse the repository at this point in the history
  • Loading branch information
armiol committed Dec 21, 2023
1 parent 36037db commit 0161c39
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import io.spine.server.storage.jdbc.DataSourceWrapper;
import io.spine.server.storage.jdbc.PredefinedMapping;
import io.spine.server.storage.jdbc.TypeMapping;
import io.spine.server.storage.jdbc.engine.DetectedEngine;
import io.spine.server.storage.jdbc.engine.PredefinedEngine;
import io.spine.server.storage.jdbc.operation.given.OperationFactoryTestEnv;
import io.spine.server.storage.jdbc.operation.given.OperationFactoryTestEnv.OverridingAllOpFactory;
Expand Down Expand Up @@ -107,7 +108,7 @@ void customizeEngine() {
var constructor = OperationFactory.class
.getDeclaredConstructor(DataSourceWrapper.class,
TypeMapping.class,
PredefinedEngine.class);
DetectedEngine.class);
assertThat(constructor)
.isNotNull();
} catch (NoSuchMethodException e) {
Expand Down

0 comments on commit 0161c39

Please sign in to comment.