From 8c96ffd5f9b886bd8def32a415f45a59f19a0f2e Mon Sep 17 00:00:00 2001 From: Adnan Hajdarevic Date: Thu, 14 Sep 2017 20:50:59 +0200 Subject: [PATCH] use /bin/true instead of /usr/bin/true --- webhook_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webhook_test.go b/webhook_test.go index f741970..d759cd9 100644 --- a/webhook_test.go +++ b/webhook_test.go @@ -51,7 +51,7 @@ func TestStaticParams(t *testing.T) { } // case 2: binary with spaces in its name - err = os.Symlink("/usr/bin/true", "/tmp/with space") + err = os.Symlink("/bin/true", "/tmp/with space") if err != nil { t.Fatalf("%v", err) }