Fix less check on my machine

This commit is contained in:
Marco Munizaga 2022-07-01 13:39:27 -07:00 committed by Marten Seemann
parent eb72b52bd8
commit 3a9ac22a9f

View File

@ -13,7 +13,7 @@ func TestFileDescriptorCounting(t *testing.T) {
}
n := getNumFDs()
require.NotZero(t, n)
require.Less(t, n, int(1e6))
require.Less(t, n, int(1e7))
}
func TestScaling(t *testing.T) {