1
0
mirror of https://github.com/docker/cli.git synced 2026-01-13 18:22:35 +03:00

fixed the output leak from error test case for config/remove

Signed-off-by: Arash Deshmeh <adeshmeh@ca.ibm.com>
This commit is contained in:
Arash Deshmeh
2017-06-13 12:24:42 -04:00
parent feeeb2c550
commit 006b9b126d

View File

@@ -77,6 +77,7 @@ func TestConfigRemoveContinueAfterError(t *testing.T) {
cmd := newConfigRemoveCommand(cli)
cmd.SetArgs(names)
cmd.SetOutput(ioutil.Discard)
assert.EqualError(t, cmd.Execute(), "error removing config: foo")
assert.Equal(t, names, removedConfigs)
}