Skip to content

Commit

Permalink
Slightly increase test limits
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaglie committed May 25, 2023
1 parent 5c29552 commit 7cb6cbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extract_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ func TestZipMemoryConsumption(t *testing.T) {
heapUsed = 0
}
fmt.Println("Heap memory used during the test:", heapUsed)
require.True(t, heapUsed < 5000000, "heap consumption should be less than 5M but is %d", heapUsed)
require.True(t, heapUsed < 10000000, "heap consumption should be less than 10M but is %d", heapUsed)
}

func download(t require.TestingT, url string, file *paths.Path) error {
Expand Down

0 comments on commit 7cb6cbf

Please sign in to comment.