Skip to content

Commit

Permalink
fix: Enable debuggable on class.
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Feb 25, 2023
1 parent da7862e commit e252e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/reincarnation/CodeVerifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public class CodeVerifier {
void enableDebugMode(TestInfo info) {
debuggable = info.getTestMethod().get().getAnnotation(Debuggable.class);
if (debuggable == null) {
info.getTestClass().get().getAnnotation(Debuggable.class);
debuggable = info.getTestClass().get().getAnnotation(Debuggable.class);
}
}

Expand Down

0 comments on commit e252e17

Please sign in to comment.