diff --git a/globals/prefixes_test.go b/globals/prefixes_test.go index 9c56287366..97b12438ce 100644 --- a/globals/prefixes_test.go +++ b/globals/prefixes_test.go @@ -23,6 +23,6 @@ func TestResourceInfoFromPrefix(t *testing.T) { for prefix, typ := range vals { assert.Equal(t, typ, ResourceInfoFromPrefix(prefix).Type) assert.Equal(t, typ, ResourceInfoFromPrefix(fmt.Sprintf("%s_foobar", prefix)).Type) - assert.Equal(t, resource.Unknown, ResourceInfoFromPrefix(fmt.Sprintf("%sfoobar", prefix))) + assert.Equal(t, resource.Unknown, ResourceInfoFromPrefix(fmt.Sprintf("%sfoobar", prefix)).Type) } }