[2.x] test: Enable sbt-test/project/setting-order (#8936)

This commit is contained in:
kenji yoshida 2026-03-21 01:59:34 +09:00 committed by GitHub
parent 8cbff8f003
commit 132443b16e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ lazy val root = (project in file("."))
Compile / scalacOptions += "multi-project",
check := {
val xs = (Compile / scalacOptions).value
assert(xs.toList == List("multi-project", "a", "b", "bare", "c"), s"$xs")
assert(xs.toList == List("a", "b", "bare", "c", "multi-project"), s"$xs")
}
)