mirror of https://github.com/helm/helm.git
Merge pull request #30930 from benoittgt/30927-ci-fix
build-test / build (push) Has been cancelled
Details
CodeQL / Analyze (go) (push) Has been cancelled
Details
golangci-lint / golangci-lint (push) Has been cancelled
Details
release / release (push) Has been cancelled
Details
release / canary-release (push) Has been cancelled
Details
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Details
Close stale issues / stale (push) Has been cancelled
Details
govulncheck / govulncheck (push) Has been cancelled
Details
build-test / build (push) Has been cancelled
Details
CodeQL / Analyze (go) (push) Has been cancelled
Details
golangci-lint / golangci-lint (push) Has been cancelled
Details
release / release (push) Has been cancelled
Details
release / canary-release (push) Has been cancelled
Details
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Details
Close stale issues / stale (push) Has been cancelled
Details
govulncheck / govulncheck (push) Has been cancelled
Details
Fix flaky TestFindChartURL due to non-deterministic map iteration
This commit is contained in:
commit
de62ed1b2e
|
@ -115,7 +115,7 @@ func TestFindChartURL(t *testing.T) {
|
|||
t.Errorf("Unexpected passcredentialsall %t", passcredentialsall)
|
||||
}
|
||||
|
||||
name = "baz"
|
||||
name = "foo"
|
||||
version = "1.2.3"
|
||||
repoURL = "http://example.com/helm"
|
||||
|
||||
|
@ -124,7 +124,7 @@ func TestFindChartURL(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
|
||||
if churl != "http://example.com/path/to/baz-1.2.3.tgz" {
|
||||
if churl != "http://example.com/helm/charts/foo-1.2.3.tgz" {
|
||||
t.Errorf("Unexpected URL %q", churl)
|
||||
}
|
||||
if username != "" {
|
||||
|
|
Loading…
Reference in New Issue