We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 552d34f commit 67705baCopy full SHA for 67705ba
pkg/test/util/supportedversion/supportedversion_test.go
@@ -22,11 +22,11 @@ import (
22
23
func TestInit(t *testing.T) {
24
// no need to call init(), since it's called automatically
25
- assert.True(t, len(List) > 0, "List should not be empty")
26
- assert.True(t, len(Map) > 0, "M should not be empty")
27
- assert.True(t, Default != "", "Default should not be empty")
28
- assert.True(t, Old != "", "Default should not be empty")
29
- assert.True(t, New != "", "Default should not be empty")
+ assert.True(t, len(List) > 0, "supportedversion.List should not be empty")
+ assert.True(t, len(Map) > 0, "supportedversion.Map should not be empty")
+ assert.True(t, Default != "", "supportedversion.Default should not be empty")
+ assert.True(t, Old != "", "supportedversion.Old should not be empty")
+ assert.True(t, New != "", "supportedversion.New should not be empty")
30
31
assert.Equal(t, len(List), len(Map), "Map should be same size as List")
32
for _, vi := range List {
0 commit comments