Skip to content

Commit 995e0a5

Browse files
committed
Fix the test case
1 parent d1320d5 commit 995e0a5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/ui/DebugViewTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,8 @@ public void testStackFrameGrouppingAndColors() throws Exception {
246246
assertNotNull("all frames", allFrames);
247247
assertEquals("frame[0]", "StackFrameColoring.breakpointMethod() line: 34", allFrames[0].getText());
248248
assertEquals("frame[0] - production", StackFrameCategorizer.CATEGORY_PRODUCTION, getStackFrameCategory(allFrames, 0));
249-
assertEquals("frame[1]", "1 collapsed frames", allFrames[1].getText());
249+
assertEquals("frame[1]", "StackFrameColoring.lambda$0(String) line: 27", allFrames[1].getText());
250+
assertEquals("frame[1] - production", StackFrameCategorizer.CATEGORY_PRODUCTION, getStackFrameCategory(allFrames, 1));
250251
assertTrue("frame[2]", allFrames[2].getText().contains("apply(Object) line: not available"));
251252
assertEquals("frame[2] - production", StackFrameCategorizer.CATEGORY_PRODUCTION, getStackFrameCategory(allFrames, 2));
252253
assertEquals("frame[3]", "7 collapsed frames", allFrames[3].getText());

0 commit comments

Comments
 (0)