1
0
mirror of https://github.com/restic/restic.git synced 2024-06-29 08:10:52 +02:00

Clarify message about expected error

This commit is contained in:
Alexander Neumann 2020-11-02 12:53:45 +01:00
parent b373f164fe
commit ee0112ab3b

View File

@ -277,5 +277,5 @@ func TestRepackWrongBlob(t *testing.T) {
if err == nil { if err == nil {
t.Fatal("expected repack to fail but got no error") t.Fatal("expected repack to fail but got no error")
} }
t.Log(err) t.Logf("found expected error: %v", err)
} }