Skip to content

Commit 68d9fa7

Browse files
committed
RHINENG-22223: fix typo
[test] | === FAIL: listener TestGetRepoPath (0.00s) [test] | upload_test.go:423: [test] | Error Trace: /go/src/app/listener/upload_test.go:423 [test] | Error: Expected nil, but got: couldn't parse repo mirrorlist or base_url: parse "https://rhui.redhat.com[": missing ']' in host [test] | Test: TestGetRepoPath
1 parent a387233 commit 68d9fa7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

listener/upload_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ func TestGetRepoPath(t *testing.T) {
418418
assert.NotNil(t, err)
419419
assert.Empty(t, repoPath)
420420

421-
repo = inventory.YumRepo{Mirrorlist: "https://rhui.redhat.com["}
421+
repo = inventory.YumRepo{Mirrorlist: "https://rhui.redhat.com/"}
422422
repoPath, err = getRepoPath(&sp, &repo)
423423
assert.Nil(t, err)
424424
assert.Empty(t, repoPath)

0 commit comments

Comments
 (0)