Skip to content

Commit c5c6f6c

Browse files
committed
spotless
1 parent 616922e commit c5c6f6c

1 file changed

Lines changed: 24 additions & 9 deletions

File tree

dd-java-agent/agent-debugger/src/test/java/com/datadog/debugger/agent/DebuggerTransformerTest.java

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -339,15 +339,30 @@ public void classGenerationFailed() {
339339
assertEquals("logprobe1", probeIdCaptor.getAllValues().get(0).getId());
340340
assertEquals("logprobe2", probeIdCaptor.getAllValues().get(1).getId());
341341
assertEquals(PROBE_ID.getId(), probeIdCaptor.getAllValues().get(2).getId());
342-
assertTrue(strCaptor.getAllValues().get(0).startsWith("Instrumentation failed for "
343-
+ CLASS_NAME
344-
+ ": java.lang.ArrayIndexOutOfBoundsException:"));
345-
assertTrue(strCaptor.getAllValues().get(1).startsWith("Instrumentation failed for "
346-
+ CLASS_NAME
347-
+ ": java.lang.ArrayIndexOutOfBoundsException:"));
348-
assertTrue(strCaptor.getAllValues().get(2).startsWith("Instrumentation failed for "
349-
+ CLASS_NAME
350-
+ ": java.lang.ArrayIndexOutOfBoundsException:"));
342+
assertTrue(
343+
strCaptor
344+
.getAllValues()
345+
.get(0)
346+
.startsWith(
347+
"Instrumentation failed for "
348+
+ CLASS_NAME
349+
+ ": java.lang.ArrayIndexOutOfBoundsException:"));
350+
assertTrue(
351+
strCaptor
352+
.getAllValues()
353+
.get(1)
354+
.startsWith(
355+
"Instrumentation failed for "
356+
+ CLASS_NAME
357+
+ ": java.lang.ArrayIndexOutOfBoundsException:"));
358+
assertTrue(
359+
strCaptor
360+
.getAllValues()
361+
.get(2)
362+
.startsWith(
363+
"Instrumentation failed for "
364+
+ CLASS_NAME
365+
+ ": java.lang.ArrayIndexOutOfBoundsException:"));
351366
}
352367

353368
@Test

0 commit comments

Comments
 (0)