Skip to content

Commit

Permalink
Adjust expectation for dynamic lambda invocation.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Feb 18, 2023
1 parent 0f3bd5f commit aaa18f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ public void testDynamicLambdaInvocation() throws Exception {
.make()
.load(DynamicSample.class.getClassLoader(), ClassLoadingStrategy.Default.CHILD_FIRST)
.getLoaded();
assertThat(type.getMethod(RUN).invoke(type.getConstructor().newInstance()), is((Object) FOO));
assertThat(type.getMethod(RUN).invoke(type.getConstructor().newInstance()), is((Object) BAZ));
}


Expand Down

0 comments on commit aaa18f2

Please sign in to comment.