Skip to content

Commit 2d06080

Browse files
Fix indy test suite
Co-authored-by: Lauri Tulmin <[email protected]>
1 parent 576ef17 commit 2d06080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing-common/integration-tests/src/main/java/helper/DuplicateHelperInstrumentation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public void transform(TypeTransformer transformer) {
2727
@SuppressWarnings("unused")
2828
public static class TestAdvice {
2929
@Advice.OnMethodExit(suppress = Throwable.class)
30-
static void addSuffix(@Advice.Return(readOnly = false) String string) {
30+
public static void addSuffix(@Advice.Return(readOnly = false) String string) {
3131
string = DuplicateHelper.addSuffix(string, " foo");
3232
}
3333
}

0 commit comments

Comments
 (0)