Skip to content

Commit 5f284a8

Browse files
committed
Improve upload archive progress bar
Signed-off-by: Michael Sverdlov <michaelsv@jfrog.com>
1 parent df40c25 commit 5f284a8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

maven_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ func TestSetupMavenCommand(t *testing.T) {
381381
client, err := httpclient.ClientBuilder().Build()
382382
assert.NoError(t, err)
383383

384-
moduleCacheUrl := serverDetails.ArtifactoryUrl + tests.MvnRemoteRepo + "-cache/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar"
384+
moduleCacheUrl := serverDetails.ArtifactoryUrl + tests.MvnRemoteRepo + "-cache/org/apache/commons/commons-lang3"
385385
_, _, err = client.GetRemoteFileDetails(moduleCacheUrl, artHttpDetails)
386386
assert.ErrorContains(t, err, "404")
387387

@@ -395,7 +395,8 @@ func TestSetupMavenCommand(t *testing.T) {
395395
output, err := exec.Command("mvn", "dependency:resolve",
396396
"-DgroupId=org.apache.commons",
397397
"-DartifactId=commons-lang3",
398-
"-Dversion=3.8.1").Output()
398+
"-Dversion=3.8.1", "-X").Output()
399+
log.Info(string(output))
399400
assert.NoError(t, err, fmt.Sprintf("%s\n%q", string(output), err))
400401

401402
// Validate that the artifact exists in the cache after running the test.

0 commit comments

Comments
 (0)