From a306018ece3e448d6ebbce856a7dfe5e484d1a84 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Mon, 22 Apr 2019 12:18:47 +0200 Subject: Rename fixture tag to commit-graph Signed-off-by: Filip Navara --- plumbing/format/commitgraph/commitgraph_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plumbing/format/commitgraph/commitgraph_test.go') diff --git a/plumbing/format/commitgraph/commitgraph_test.go b/plumbing/format/commitgraph/commitgraph_test.go index 9b39ed8..581415c 100644 --- a/plumbing/format/commitgraph/commitgraph_test.go +++ b/plumbing/format/commitgraph/commitgraph_test.go @@ -75,14 +75,14 @@ func testDecodeHelper(c *C, path string) { } func (s *CommitgraphSuite) TestDecode(c *C) { - fixtures.ByTag("commitgraph").Test(c, func(f *fixtures.Fixture) { + fixtures.ByTag("commit-graph").Test(c, func(f *fixtures.Fixture) { dotgit := f.DotGit() testDecodeHelper(c, path.Join(dotgit.Root(), "objects", "info", "commit-graph")) }) } func (s *CommitgraphSuite) TestReencode(c *C) { - fixtures.ByTag("commitgraph").Test(c, func(f *fixtures.Fixture) { + fixtures.ByTag("commit-graph").Test(c, func(f *fixtures.Fixture) { dotgit := f.DotGit() reader, err := mmap.Open(path.Join(dotgit.Root(), "objects", "info", "commit-graph")) @@ -105,7 +105,7 @@ func (s *CommitgraphSuite) TestReencode(c *C) { } func (s *CommitgraphSuite) TestReencodeInMemory(c *C) { - fixtures.ByTag("commitgraph").Test(c, func(f *fixtures.Fixture) { + fixtures.ByTag("commit-graph").Test(c, func(f *fixtures.Fixture) { dotgit := f.DotGit() reader, err := mmap.Open(path.Join(dotgit.Root(), "objects", "info", "commit-graph")) -- cgit