Skip to content

Commit e56e75a

Browse files
authored
test(storage): re-enable download in conf test (#12054)
Re-enable this check and remove TODO due to fix in testbench (googleapis/storage-testbench#722)
1 parent 2d4cfb6 commit e56e75a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

storage/retry_conformance_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -654,9 +654,7 @@ var methods = map[string][]retryFunc{
654654
}
655655

656656
// Don't reuse obj, in case preconditions were set on the write request.
657-
// TODO: switch to using NewReader instead of NewRangeReader once emulator
658-
// issue with CRC32C for appendable objects is fixed.
659-
r, err := b.Object(obj.ObjectName()).NewRangeReader(ctx, 0, 3*MiB)
657+
r, err := b.Object(obj.ObjectName()).NewReader(ctx)
660658
defer r.Close()
661659
if err != nil {
662660
return fmt.Errorf("obj.NewReader: %v", err)

0 commit comments

Comments
 (0)