Skip to content

Commit 2a03109

Browse files
Remove print statements from raw array test (#1814)
1 parent 5f90032 commit 2a03109

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

bson/raw_array_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import (
1010
"bytes"
1111
"encoding/binary"
1212
"errors"
13-
"fmt"
1413
"io"
1514
"testing"
1615

@@ -462,12 +461,10 @@ func TestRawArray_Values(t *testing.T) {
462461
t.Parallel()
463462

464463
values, err := tcase.arr.Values()
465-
fmt.Println("values: ", values)
466464
require.NoError(t, err, "failed to turn array into values")
467465
require.Len(t, values, len(tcase.want), "got len does not match want")
468466

469467
for idx, want := range tcase.want {
470-
fmt.Println(want.Value, values[idx].Value)
471468
assert.True(t, want.Equal(values[idx]), "want: %v, got: %v", want, values[idx])
472469
}
473470
})

0 commit comments

Comments
 (0)