Skip to content

Commit

Permalink
Format files
Browse files Browse the repository at this point in the history
  • Loading branch information
aartigao committed Nov 19, 2024
1 parent 347b586 commit 6989f4e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ class ModulePositionScannerTest extends FunSuite {

test("sbt module with version val and comment") {
val d = "org.typelevel".g % "cats-core".a % "2.9.0"
val fd = FileData("build.sbt", s""""${d.groupId}" %% "${d.artifactId.name}" % catsVersion // this is a comment""")
val fd = FileData(
"build.sbt",
s""""${d.groupId}" %% "${d.artifactId.name}" % catsVersion // this is a comment"""
)
val obtained = ModulePositionScanner.findPositions(d, fd)
val expected = List(
ModulePosition(
Expand Down

0 comments on commit 6989f4e

Please sign in to comment.