aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/path_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/path_test.go')
-rw-r--r--internal/path_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/path_test.go b/internal/path_test.go
index 97a8f926..cb4571ef 100644
--- a/internal/path_test.go
+++ b/internal/path_test.go
@@ -4,7 +4,7 @@ import (
"reflect"
"testing"
- "hakurei.app/container"
+ "hakurei.app/container/check"
)
func TestMustCheckPath(t *testing.T) {
@@ -35,7 +35,7 @@ func TestMustCheckPath(t *testing.T) {
}
}
- if got := mustCheckPath(fatal, "test", tc.pathname); got != nil && !reflect.DeepEqual(got, container.MustAbs(tc.pathname)) {
+ if got := mustCheckPath(fatal, "test", tc.pathname); got != nil && !reflect.DeepEqual(got, check.MustAbs(tc.pathname)) {
t.Errorf("mustCheckPath: %q", got)
}
})