aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/executable_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/executable_test.go')
-rw-r--r--container/executable_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/container/executable_test.go b/container/executable_test.go
index 2a44017a..5608a8ae 100644
--- a/container/executable_test.go
+++ b/container/executable_test.go
@@ -9,7 +9,7 @@ import (
func TestExecutable(t *testing.T) {
for i := 0; i < 16; i++ {
- if got := container.MustExecutable(); got != os.Args[0] {
+ if got := container.MustExecutable(container.NewMsg(nil)); got != os.Args[0] {
t.Errorf("MustExecutable: %q, want %q",
got, os.Args[0])
}