File tree Expand file tree Collapse file tree
dd-java-agent/agent-debugger/src/test/java/com/datadog/debugger/agent Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments