Replace '%s' in create tests
Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <jess@docker.com> (github: jfrazelle)
This commit is contained in:
parent
dc243c812b
commit
91f33fcaaa
|
|
@ -107,7 +107,7 @@ func TestCreateEchoStdout(t *testing.T) {
|
||||||
errorOut(err, t, out)
|
errorOut(err, t, out)
|
||||||
|
|
||||||
if out != "test123\n" {
|
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()
|
deleteAllContainers()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue