From 56ad07ebabd3513e64a073579f9b46563e8f4279 Mon Sep 17 00:00:00 2001 From: Anthony HAMON Date: Thu, 6 Sep 2018 23:05:35 +0200 Subject: [PATCH] commands/git : rename functions --- pkg/commands/git_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/commands/git_test.go b/pkg/commands/git_test.go index cd0c86198..ac1fe8094 100644 --- a/pkg/commands/git_test.go +++ b/pkg/commands/git_test.go @@ -321,7 +321,7 @@ func TestGitCommandGetStashEntries(t *testing.T) { } } -func TestGetStashEntryDiff(t *testing.T) { +func TestGitCommandGetStashEntryDiff(t *testing.T) { gitCmd := newDummyGitCommand() gitCmd.OSCommand.command = func(cmd string, args ...string) *exec.Cmd { assert.EqualValues(t, "git", cmd) @@ -335,7 +335,7 @@ func TestGetStashEntryDiff(t *testing.T) { assert.NoError(t, err) } -func TestGetStatusFiles(t *testing.T) { +func TestGitCommandGetStatusFiles(t *testing.T) { type scenario struct { testName string command func(string, ...string) *exec.Cmd