Fix vet errors about formatting directives

Signed-off-by: Alexander Morozov <lk4d4@docker.com>
Upstream-commit: a7ae7fed7311551975d2bccb7417c328be3ea478
Component: engine
This commit is contained in:
Alexander Morozov
2014-12-12 10:58:56 -08:00
parent e0b22078ad
commit bebcb13002
6 changed files with 6 additions and 6 deletions

View File

@ -122,7 +122,7 @@ func TestAttachTtyWithoutStdin(t *testing.T) {
if out, _, err := runCommandWithOutput(cmd); err == nil {
t.Fatal("attach should have failed")
} else if !strings.Contains(out, expected) {
t.Fatal("attach failed with error %q: expected %q", out, expected)
t.Fatalf("attach failed with error %q: expected %q", out, expected)
}
}()