From 56613c325278eb477f793f8147f41b12fd310624 Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Fri, 17 Jun 2022 00:18:10 +0300 Subject: [PATCH] TestReconstructData was probably meant to call testReconstructData() --- reedsolomon_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reedsolomon_test.go b/reedsolomon_test.go index ab741b85..88eec21d 100644 --- a/reedsolomon_test.go +++ b/reedsolomon_test.go @@ -591,7 +591,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...) }) } }