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

Replace '%s' in rm 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:59:11 -07:00
parent a44296603f
commit be31a66b7a

View file

@ -102,7 +102,7 @@ func TestRmContainerOrphaning(t *testing.T) {
t.Fatalf("%v: %s", err, out)
}
if !strings.Contains(out, img1) {
t.Fatalf("Orphaned container (could not find '%s' in docker images): %s", img1, out)
t.Fatalf("Orphaned container (could not find %q in docker images): %s", img1, out)
}
deleteAllContainers()