fix type error in ulimit_test.go on FreeBSD
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
Łukasz Magiera committed
Feb 5, 2018 at 21:07 UTC
ffcdb4eec92392c0bd78320d0ec3c8d06d85092f
1 file changed
+1
-1
cmd/ipfs/util/ulimit_test.go
+1
-1
@@ -75,7 +75,7 @@ func TestManageFdLimitWithEnvSet(t *testing.T) {
75
}
76
77
setMaxFds()
78
- if maxFds != value {
78
+ if maxFds != uint64(value) {
79
t.Errorf("The maxfds is not set from IPFS_FD_MAX")
80
}
81