1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-07 22:02:56 +03:00

update test to pass in default ignore-whitespace flag (false)

This commit is contained in:
Davyd McColl
2021-05-28 13:27:55 +02:00
committed by Jesse Duffield
parent a9f04d3925
commit 3f96537380

View File

@@ -411,7 +411,7 @@ func TestGitCommandDiff(t *testing.T) {
t.Run(s.testName, func(t *testing.T) { t.Run(s.testName, func(t *testing.T) {
gitCmd := NewDummyGitCommand() gitCmd := NewDummyGitCommand()
gitCmd.OSCommand.Command = s.command gitCmd.OSCommand.Command = s.command
gitCmd.WorktreeFileDiff(s.file, s.plain, s.cached) gitCmd.WorktreeFileDiff(s.file, s.plain, s.cached, false)
}) })
} }
} }