diff --git a/pkg/local_object_storage/blobstor/blobstor_test.go b/pkg/local_object_storage/blobstor/blobstor_test.go index ef67a86a2..9af7956e4 100644 --- a/pkg/local_object_storage/blobstor/blobstor_test.go +++ b/pkg/local_object_storage/blobstor/blobstor_test.go @@ -21,7 +21,8 @@ func TestCompression(t *testing.T) { newBlobStor := func(t *testing.T, compress bool) *BlobStor { bs := New(WithCompressObjects(compress), WithRootPath(dir), - WithSmallSizeLimit(smallSizeLimit)) + WithSmallSizeLimit(smallSizeLimit), + WithBlobovniczaShallowWidth(1)) // default width is 16, slow init require.NoError(t, bs.Open()) require.NoError(t, bs.Init()) return bs