Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scalameta: upgrade to v4.9.3 #3875

Merged
merged 1 commit into from
Mar 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.portablescala.sbtplatformdeps.PlatformDepsPlugin.autoImport._

object Dependencies {
val metaconfigV = "0.12.0"
val scalametaV = "4.9.2"
val scalametaV = "4.9.3"
val scalacheckV = "1.17.0"
val coursier = "2.1.2"
val munitV = "0.7.29"
Expand Down
19 changes: 8 additions & 11 deletions scalafmt-tests/src/test/scala/org/scalafmt/cli/CliTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -660,12 +660,10 @@ trait CliTestBehavior { this: AbstractCliTest =>
Seq(Array("--test", "--config-str", s"""{version="$version"}""")),
assertOut = out => {
assert(
out.contains(
s"foo.scala:2: error:$dialectError } expected but end of file found"
) &&
out.contains(
"error: ParseError=2"
)
out.contains(s"foo.scala:2: error:$dialectError") &&
out.contains("end of file") &&
out.contains("error: ParseError=2"),
out
)
}
)
Expand All @@ -686,11 +684,10 @@ trait CliTestBehavior { this: AbstractCliTest =>
ExitCode.ParseError,
assertOut = out => {
assert(
out.contains(
s"foo.scala:2: error:$dialectError } expected but end of file found"
) && out.contains(
"error: ParseError=2"
)
out.contains(s"foo.scala:2: error:$dialectError") &&
out.contains(s"end of file") &&
out.contains("error: ParseError=2"),
out
)
}
)
Expand Down
Loading