Remove spurious field in kind sorter test (#2667)

The test never reads the manifest type's "content" field, so there's
no reason to populate it explicitly with its zero value.
pull/2831/head
Steven E. Harris 7 years ago committed by GitHub
parent 5ed2d6bddb
commit f588315b76

@ -118,9 +118,8 @@ func TestKindSorter(t *testing.T) {
Head: &util.SimpleHead{Kind: "StatefulSet"},
},
{
Name: "w",
Content: "",
Head: &util.SimpleHead{Kind: "APIService"},
Name: "w",
Head: &util.SimpleHead{Kind: "APIService"},
},
}

Loading…
Cancel
Save