diff --git a/Dockerfile b/Dockerfile index 443980f19..7f333b2ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN go mod download RUN if [ "$INSTALL_TOOLS" == "yes" ] ; then \ go install github.com/swaggo/swag/cmd/swag@v1.16.4 && \ - go install gotest.tools/gotestsum@v1.12.0 && \ + go install gotest.tools/gotestsum@v1.13.0 && \ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \ | sh -s -- -b $(go env GOPATH)/bin v2.2.2 ; \ fi diff --git a/listener/upload_test.go b/listener/upload_test.go index c54385341..e5e3cb2e7 100644 --- a/listener/upload_test.go +++ b/listener/upload_test.go @@ -418,7 +418,7 @@ func TestGetRepoPath(t *testing.T) { assert.NotNil(t, err) assert.Empty(t, repoPath) - repo = inventory.YumRepo{Mirrorlist: "https://rhui.redhat.com["} + repo = inventory.YumRepo{Mirrorlist: "https://rhui.redhat.com/"} repoPath, err = getRepoPath(&sp, &repo) assert.Nil(t, err) assert.Empty(t, repoPath)