From e2563b3ecac5eb3be87faa571a4146d02677705d Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Thu, 18 Jun 2015 21:28:38 +0200 Subject: [PATCH] Fix comments --- cmd/restic/integration_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/restic/integration_test.go b/cmd/restic/integration_test.go index 1da97c700..d097ada5d 100644 --- a/cmd/restic/integration_test.go +++ b/cmd/restic/integration_test.go @@ -91,7 +91,7 @@ func TestBackup(t *testing.T) { datafile := filepath.Join("testdata", "backup-data.tar.gz") fd, err := os.Open(datafile) if os.IsNotExist(err) { - t.Skipf("unable to find data file %q, skipping TestBackup", datafile) + t.Skipf("unable to find data file %q, skipping", datafile) return } OK(t, err) @@ -182,7 +182,7 @@ func TestIncrementalBackup(t *testing.T) { datafile := filepath.Join("testdata", "backup-data.tar.gz") fd, err := os.Open(datafile) if os.IsNotExist(err) { - t.Skipf("unable to find data file %q, skipping TestBackup", datafile) + t.Skipf("unable to find data file %q, skipping", datafile) return } OK(t, err)