From 05ba195779a8065d68f8bf08a1bdceb541325256 Mon Sep 17 00:00:00 2001 From: Philippe Bourgau Date: Fri, 11 Oct 2024 12:08:15 +0200 Subject: [PATCH] [#809] Create GitImpl with remote in test (fix merge compilation isssue) To support VCS that don't manage emojies --- src/vcs/git/git_impl_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vcs/git/git_impl_test.go b/src/vcs/git/git_impl_test.go index 4054ee18..75b1e0de 100644 --- a/src/vcs/git/git_impl_test.go +++ b/src/vcs/git/git_impl_test.go @@ -105,7 +105,7 @@ func Test_git_auto_push_is_disabled_default(t *testing.T) { } func Test_git_supports_emojis(t *testing.T) { - g, _ := newGitImpl(inMemoryRepoInit, "") + g, _ := newGitImpl(inMemoryRepoInit, "", "") assert.True(t, g.SupportsEmojis()) }