From 43f7a1fcd92d68356e1203b4fc77a16eda702ce6 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 8 May 2016 13:09:36 +0200 Subject: [PATCH] Correct log statement --- src/restic/testing_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/restic/testing_test.go b/src/restic/testing_test.go index de7402871..8243a01a8 100644 --- a/src/restic/testing_test.go +++ b/src/restic/testing_test.go @@ -31,7 +31,7 @@ func TestCreateSnapshot(t *testing.T) { sn := snapshots[0] if sn.Time.Before(testSnapshotTime) || sn.Time.After(testSnapshotTime.Add(testCreateSnapshots*time.Second)) { - t.Fatalf("timestamp %v is outside of the allowed time range", sn.Time, testSnapshotTime) + t.Fatalf("timestamp %v is outside of the allowed time range", sn.Time) } if sn.Tree == nil {