Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
Fix less check on my machine
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoPolo authored and marten-seemann committed Jul 2, 2022
1 parent eb72b52 commit 3a9ac22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion limit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 3a9ac22

Please sign in to comment.