1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Fix test.

This commit is contained in:
Cedric Beust 2016-02-23 06:27:25 -08:00
parent 061b6141f0
commit 5bcd611c99

View file

@ -19,7 +19,7 @@ class RemoteRepoTest @Inject constructor(val repoFinder: RepoFinder,
val dep = MavenDependency.create("org.codehaus.groovy:groovy-all:")
// Note: this test might fail if a new version of Groovy gets uploaded, need
// to find a stable (i.e. abandoned) package
Assert.assertEquals(dep.id.split(":")[2], "2.4.5")
Assert.assertEquals(dep.id.split(":")[2], "2.4.6")
}
@Test(enabled = false)