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.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/container/executable_test.go b/container/executable_test.go
index 5608a8ae..33981bb6 100644
--- a/container/executable_test.go
+++ b/container/executable_test.go
@@ -5,11 +5,12 @@ import (
"testing"
"hakurei.app/container"
+ "hakurei.app/message"
)
func TestExecutable(t *testing.T) {
for i := 0; i < 16; i++ {
- if got := container.MustExecutable(container.NewMsg(nil)); got != os.Args[0] {
+ if got := container.MustExecutable(message.NewMsg(nil)); got != os.Args[0] {
t.Errorf("MustExecutable: %q, want %q",
got, os.Args[0])
}