1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-04 22:34:39 +02:00

commands/git : rename functions

This commit is contained in:
Anthony HAMON 2018-09-06 23:05:35 +02:00
parent 1ecd74c357
commit 56ad07ebab

View File

@ -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