From 5799af8e3797f78b75823f7dace352c339a6d991 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Sun, 1 May 2016 13:36:03 -0700 Subject: [PATCH] Test fix. --- src/test/kotlin/com/beust/kobalt/maven/DownloadTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/kotlin/com/beust/kobalt/maven/DownloadTest.kt b/src/test/kotlin/com/beust/kobalt/maven/DownloadTest.kt index 280071f0..78db05e4 100644 --- a/src/test/kotlin/com/beust/kobalt/maven/DownloadTest.kt +++ b/src/test/kotlin/com/beust/kobalt/maven/DownloadTest.kt @@ -152,7 +152,7 @@ class DownloadTest @Inject constructor( // version is being fetched instead of moshi:1.2.0-SNAPSHOT (which gets discarded anyway // since snapshots are not allowed to be returned when looking up a versionless id) val host = HostConfig("http://repository.jetbrains.com/all/") - val id = "com.squareup.moshi:moshi:(0,]" + val id = "com.squareup.moshi:moshi:1.1.0" val dr = aether.resolve(id) Assert.assertEquals(dr.dependency.version, "1.1.0") }