From 3f96537380ea55e7542eea129474620a9c3de01a Mon Sep 17 00:00:00 2001 From: Davyd McColl Date: Fri, 28 May 2021 13:27:55 +0200 Subject: [PATCH] :white_check_mark: update test to pass in default ignore-whitespace flag (false) --- pkg/commands/files_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/files_test.go b/pkg/commands/files_test.go index 8b147fa35..16583adc7 100644 --- a/pkg/commands/files_test.go +++ b/pkg/commands/files_test.go @@ -411,7 +411,7 @@ func TestGitCommandDiff(t *testing.T) { t.Run(s.testName, func(t *testing.T) { gitCmd := NewDummyGitCommand() gitCmd.OSCommand.Command = s.command - gitCmd.WorktreeFileDiff(s.file, s.plain, s.cached) + gitCmd.WorktreeFileDiff(s.file, s.plain, s.cached, false) }) } }