fix type error in ulimit_test.go on FreeBSD

License: MIT
Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
This commit is contained in:
Łukasz Magiera 2018-02-05 21:07:20 +01:00
parent b37f856513
commit ffcdb4eec9

View File

@ -75,7 +75,7 @@ func TestManageFdLimitWithEnvSet(t *testing.T) {
}
setMaxFds()
if maxFds != value {
if maxFds != uint64(value) {
t.Errorf("The maxfds is not set from IPFS_FD_MAX")
}