From 24bfaddb58d90fefac84b8e43ff7552bde18b636 Mon Sep 17 00:00:00 2001 From: godog Date: Fri, 1 Nov 2019 17:39:12 +0100 Subject: [PATCH] repository_restic: account for new tag in tests --- repository_restic_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository_restic_test.go b/repository_restic_test.go index 03b5a4d..8171347 100644 --- a/repository_restic_test.go +++ b/repository_restic_test.go @@ -111,7 +111,7 @@ func runResticTest(t *testing.T, tmpdir string, source *SourceSpec, restorePatte t.Fatalf("wrong number of snapshots: %+v", snaps) } snap := snaps[0] - if len(snap.Tags) != 2 { + if len(snap.Tags) != 3 { t.Fatalf("woops, bad number of tags: %+v", snap) } -- GitLab