1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Replace '%s' in create tests

Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <jess@docker.com> (github: jfrazelle)
This commit is contained in:
Jessica Frazelle 2014-10-14 10:58:35 -07:00
parent dc243c812b
commit 91f33fcaaa

View file

@ -107,7 +107,7 @@ func TestCreateEchoStdout(t *testing.T) {
errorOut(err, t, out)
if out != "test123\n" {
t.Errorf("container should've printed 'test123', got '%s'", out)
t.Errorf("container should've printed 'test123', got %q", out)
}
deleteAllContainers()