From cb394eb4c5ef4eabe4a06a136cceca5c49db6ab1 Mon Sep 17 00:00:00 2001 From: Lei Kang Date: Wed, 17 Sep 2025 16:46:35 -0700 Subject: [PATCH] resolve comment --- pkg/codec/vpx/vpx_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkg/codec/vpx/vpx_test.go b/pkg/codec/vpx/vpx_test.go index bb661d6..e6c4257 100644 --- a/pkg/codec/vpx/vpx_test.go +++ b/pkg/codec/vpx/vpx_test.go @@ -512,9 +512,7 @@ func TestVP8EncodeDecode(t *testing.T) { } } writer.Close() - - // ✅ wait until decoder goroutine is done wg.Wait() - assert.Equal(t, counter, totalFrames) + assert.Equal(t, totalFrames, counter) }) }