aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/params_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/params_test.go')
-rw-r--r--container/params_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/container/params_test.go b/container/params_test.go
index f74abf1c..11d08850 100644
--- a/container/params_test.go
+++ b/container/params_test.go
@@ -56,7 +56,7 @@ func TestSetupReceive(t *testing.T) {
t.Run("setup receive", func(t *testing.T) {
check := func(t *testing.T, useNilFdp bool) {
const key = "TEST_SETUP_RECEIVE"
- payload := []int{syscall.MS_MGC_VAL, syscall.MS_MGC_MSK, syscall.MS_ASYNC, syscall.MS_ACTIVE}
+ payload := []uint64{syscall.MS_MGC_VAL, syscall.MS_MGC_MSK, syscall.MS_ASYNC, syscall.MS_ACTIVE}
encoderDone := make(chan error, 1)
extraFiles := make([]*os.File, 0, 1)
@@ -86,7 +86,7 @@ func TestSetupReceive(t *testing.T) {
}
var (
- gotPayload []int
+ gotPayload []uint64
fdp *uintptr
)
if !useNilFdp {