fix tests

This commit is contained in:
Zack Scholl 2022-02-03 08:45:50 -08:00
parent 9b5252d54c
commit b0e7d4d5df
1 changed files with 3 additions and 2 deletions

View File

@ -9,10 +9,11 @@ import (
"strings"
"testing"
"github.com/schollz/croc/v9/src/models"
"github.com/stretchr/testify/assert"
)
const TCP_BUFFER_SIZE = 1024 * 64
var bigFileSize = 75000000
func bigFile() {
@ -62,7 +63,7 @@ func BenchmarkMissingChunks(b *testing.B) {
bigFile()
b.ResetTimer()
for i := 0; i < b.N; i++ {
MissingChunks("bigfile.test", int64(bigFileSize), models.TCP_BUFFER_SIZE/2)
MissingChunks("bigfile.test", int64(bigFileSize), TCP_BUFFER_SIZE/2)
}
}