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 72ffa84 commit 28a4d37Copy full SHA for 28a4d37
test/kubernetes/e2e/features/CRD_categories/suite.go
@@ -49,8 +49,6 @@ func (s *testingSuite) TestCommonCategory() {
49
err := cmd.WithStdout(io.Writer(&out)).Run().Cause()
50
s.NoError(err)
51
52
- // output should include the installed VS
53
- outCRs := strings.Split(strings.TrimSpace(out.String()), "\n")
54
- s.Len(outCRs, 1)
55
- s.Equal(outCRs[0], installedVs)
+ // output should match the installed VS
+ s.Equal(strings.TrimSpace(out.String()), installedVs)
56
}
0 commit comments