We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54c8022 commit b22f829Copy full SHA for b22f829
scalafix-tests/integration/src/test/scala/scalafix/tests/cli/CliSyntacticSuite.scala
@@ -312,6 +312,7 @@ class CliSyntacticSuite extends BaseCliSuite {
312
check(
313
name = "fix script files",
314
originalLayout = s"""|/a.sc
315
+ |#!/usr/bin/env -S scala-cli shebang
316
|def foo = { println(s"hello") }
317
|lazy val bar = project
318
|""".stripMargin,
@@ -321,6 +322,7 @@ class CliSyntacticSuite extends BaseCliSuite {
321
322
"a.sc"
323
),
324
expectedLayout = s"""|/a.sc
325
326
|def foo = { println("hello") }
327
328
0 commit comments