Inspect returns json, not cli formatted output

This commit is contained in:
Charlie Voiselle 2017-12-05 12:04:11 -05:00
parent 6ccc4219d3
commit f7c4156f95
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ func TestNamespaceInspectCommand_NamespaceMatchesPrefix(t *testing.T) {
}
// Check to ensure we got the proper foo
out := ui.OutputWriter.String()
if !strings.Contains(out, "= foo\n") {
if !strings.Contains(out, "\"foo\",\n") {
t.Fatalf("expected namespace foo, got: %s", out)
}
}