use /bin/true instead of /usr/bin/true

This commit is contained in:
Adnan Hajdarevic 2017-09-14 20:50:59 +02:00
parent f0e26bc03c
commit 8c96ffd5f9

View file

@ -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)
}