From bf86fed33d61de4ebafaf232c2c179cf4353236f Mon Sep 17 00:00:00 2001 From: Gregory Newman-Smith Date: Wed, 7 Aug 2024 13:32:33 +0100 Subject: [PATCH] lint fix after refector test --- db/revision_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/db/revision_test.go b/db/revision_test.go index 7fecc64c3b..20898958d5 100644 --- a/db/revision_test.go +++ b/db/revision_test.go @@ -84,7 +84,6 @@ func TestBodyUnmarshal(t *testing.T) { func TestParseRevisionsToAncestor(t *testing.T) { revisions := Revisions{RevisionsStart: 5, RevisionsIds: []string{"five", "four", "three", "two", "one"}} - var revs []string assert.Equal(t, []string{"4-four", "3-three"}, revisions.parseAncestorRevisions("3-three")) assert.Equal(t, []string{"4-four"}, revisions.parseAncestorRevisions("4-four"))