1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

correct some nits in comments

Signed-off-by: allencloud <allen.sun@daocloud.io>
Upstream-commit: acb1fc424b
Component: cli
This commit is contained in:
allencloud
2016-09-04 15:17:58 +08:00
parent b87d5047a3
commit b8d8e583b4

View File

@@ -38,7 +38,7 @@ func TestEventsErrorInOptions(t *testing.T) {
}
_, err := client.Events(context.Background(), e.options)
if err == nil || !strings.Contains(err.Error(), e.expectedError) {
t.Fatalf("expected a error %q, got %v", e.expectedError, err)
t.Fatalf("expected an error %q, got %v", e.expectedError, err)
}
}
}