Merge pull request #1336 from sbt/wip/compile-with-2.11

Bump expected 2.11 module versions so we can compile with 2.11
This commit is contained in:
eugene yokota 2014-05-15 09:13:36 -04:00
commit 47caff27bc
1 changed files with 2 additions and 2 deletions

View File

@ -35,13 +35,13 @@ object ComponentManagerTest extends Specification {
"return the files for a multi-file component" in {
withManager { manager =>
val hashes = defineFiles(manager, TestID, "a", "b")
checksum(manager.files(TestID)(Fail)) must haveTheSameElementsAs(hashes)
checksum(manager.files(TestID)(Fail)) must containTheSameElementsAs(hashes)
}
}
"return the files for a single-file component" in {
withManager { manager =>
val hashes = defineFiles(manager, TestID, "a")
checksum(manager.files(TestID)(Fail)) must haveTheSameElementsAs(hashes)
checksum(manager.files(TestID)(Fail)) must containTheSameElementsAs(hashes)
}
}
"throw an exception if 'files' is called for a non-existing component" in {