Skip to content

Commit

Permalink
Fix step filter test on Scala 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
adpi2 committed Jan 26, 2023
1 parent 21ca7b0 commit 3659e64
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ abstract class StepFilterTests(scalaVersion: ScalaVersion) extends DebugTestSuit
check(
Breakpoint(9),
StepIn.line(4),
StepIn.method("String.toString"),
StepIn.method("String.toString()"),
StepIn.line(4),
StepIn.line(9),
StepIn.method("Predef$.println(Object)"),
Expand All @@ -366,7 +366,7 @@ abstract class StepFilterTests(scalaVersion: ScalaVersion) extends DebugTestSuit
StepIn.method("Predef$.println(Object)"),
Breakpoint(11),
StepIn.line(18),
StepIn.method("String.toString"),
StepIn.method("String.toString()"),
StepIn.line(18),
StepIn.line(11),
StepIn.method("Predef$.println(Object)"),
Expand Down

0 comments on commit 3659e64

Please sign in to comment.