Skip to content

Commit

Permalink
Fix expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Jan 6, 2024
1 parent 346d643 commit d62943f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion itest/src/fix/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def verify() =
val fixedScala = read(pwd / "project" / "src" / "Fix.scala")
val expected = """object Fix {
| def procedure(): Unit = {}
| def myComplexMethod: Map[Int, String] = 1.to(10).map(i => i -> i.toString).toMap
| def myComplexMethod: Map[Int,String] = 1.to(10).map(i => i -> i.toString).toMap
|}
|""".stripMargin
assert(fixedScala == expected)
Expand Down

0 comments on commit d62943f

Please sign in to comment.