Skip to content

Commit

Permalink
increase TestReadAccessorAllocs runs
Browse files Browse the repository at this point in the history
  • Loading branch information
qmuntal committed Aug 30, 2024
1 parent 9eb9117 commit 91290d6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modeler/read_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func TestReadAccessorAllocs(t *testing.T) {
}

testFunc := func(t *testing.T, buf []byte, want float32) {
allocs := testing.AllocsPerRun(10, func() {
allocs := testing.AllocsPerRun(50, func() {
modeler.ReadAccessor(doc, acr, buf)
})
if allocs != float64(want) {
Expand All @@ -216,10 +216,10 @@ func TestReadAccessorAllocs(t *testing.T) {
})
t.Run("2", func(t *testing.T) {
buf := make([]byte, 24)
testFunc(t, buf, 3)
testFunc(t, buf, 3)
testFunc(t, buf, 3)
testFunc(t, buf, 3)
testFunc(t, buf, 2)
testFunc(t, buf, 2)
testFunc(t, buf, 2)
testFunc(t, buf, 2)
})
t.Run("4", func(t *testing.T) {
buf := make([]byte, 48)
Expand Down

0 comments on commit 91290d6

Please sign in to comment.