From ac382da11f230dbd4bc967fe18a89e2628b6ac03 Mon Sep 17 00:00:00 2001 From: Elim Tsiagbey Date: Mon, 8 Jan 2024 19:23:07 -0500 Subject: [PATCH] fix: initialize `assert` for `withBuffer` test --- internal/storage/options_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/storage/options_test.go b/internal/storage/options_test.go index a2f8dad414..675bb6a799 100644 --- a/internal/storage/options_test.go +++ b/internal/storage/options_test.go @@ -60,6 +60,8 @@ func Test_getOpts(t *testing.T) { assert.Equal(opts, testOpts) }) t.Run("WithBuffer", func(t *testing.T) { + t.Parallel() + assert := assert.New(t) testOpts := getDefaultOptions() opts := GetOpts(WithBuffer(0)) assert.Equal(testOpts, opts)