internal/model: fix formatting directive in test

This commit is contained in:
Emil Hessman 2014-11-12 12:32:25 +01:00
parent 1795e0a290
commit 2592ba7399
1 changed files with 2 additions and 2 deletions

View File

@ -38,10 +38,10 @@ func TestSourceFileOK(t *testing.T) {
n, err := fd.Read(bs)
if n != len(bs) {
t.Fatal("Wrong read length %d != %d", n, len(bs))
t.Fatalf("Wrong read length %d != %d", n, len(bs))
}
if string(bs) != "foobar" {
t.Fatal("Wrong contents %s != foobar", bs)
t.Fatalf("Wrong contents %s != foobar", string(bs))
}
if err := s.failed(); err != nil {