From afe824a3d6aa114174bb9b51041c3193d9e4ec9e Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Mon, 9 May 2022 21:32:33 +1000 Subject: [PATCH] fix test --- pkg/commands/os_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/commands/os_test.go b/pkg/commands/os_test.go index fb8c475b..e1a7f789 100644 --- a/pkg/commands/os_test.go +++ b/pkg/commands/os_test.go @@ -169,6 +169,8 @@ func TestOSCommandQuoteSingleQuote(t *testing.T) { osCommand := NewDummyOSCommand() osCommand.Platform.os = "linux" + osCommand.Platform.fallbackEscapedQuote = "\"" + osCommand.Platform.escapedQuote = "'" actual := osCommand.Quote("hello 'test'")