mirror of https://github.com/sbt/sbt.git
[2.x] test: Enable sbt-test/project/setting-order (#8936)
This commit is contained in:
parent
8cbff8f003
commit
132443b16e
|
|
@ -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")
|
||||
}
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue