From 66e5dacf5ea8e1474ec7470ffa2c0f7865947a1c Mon Sep 17 00:00:00 2001 From: Anthony HAMON Date: Tue, 28 Aug 2018 21:17:18 +0200 Subject: [PATCH] fix git tests --- pkg/commands/git_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/commands/git_test.go b/pkg/commands/git_test.go index 2380887e1..8117ed1e5 100644 --- a/pkg/commands/git_test.go +++ b/pkg/commands/git_test.go @@ -118,6 +118,7 @@ func TestGetStatusFiles(t *testing.T) { Deleted: false, HasMergeConflicts: false, DisplayString: "MM file1.txt", + Type: "other", }, { Name: "file3.txt", @@ -127,6 +128,7 @@ func TestGetStatusFiles(t *testing.T) { Deleted: false, HasMergeConflicts: false, DisplayString: "A file3.txt", + Type: "other", }, { Name: "file2.txt", @@ -136,6 +138,7 @@ func TestGetStatusFiles(t *testing.T) { Deleted: false, HasMergeConflicts: false, DisplayString: "AM file2.txt", + Type: "other", }, { Name: "file4.txt", @@ -145,6 +148,7 @@ func TestGetStatusFiles(t *testing.T) { Deleted: false, HasMergeConflicts: false, DisplayString: "?? file4.txt", + Type: "other", }, }