From e97f38d38d17cb0010e5067ab026752ce28cf09e Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Fri, 17 Jun 2022 12:58:38 +0300 Subject: [PATCH] TestReconstructData was probably meant to call testReconstructData() (#188) Co-authored-by: Vitaliy Filippov --- reedsolomon_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reedsolomon_test.go b/reedsolomon_test.go index 98ae0af..6d9e0af 100644 --- a/reedsolomon_test.go +++ b/reedsolomon_test.go @@ -654,7 +654,7 @@ func TestReconstructData(t *testing.T) { testReconstructData(t) for i, o := range testOpts() { t.Run(fmt.Sprintf("options %d", i), func(t *testing.T) { - testReconstruct(t, o...) + testReconstructData(t, o...) }) } }