From a8489bc5f0f809ae9191852ff1abaa2ca09671ec Mon Sep 17 00:00:00 2001 From: vankichi Date: Mon, 9 Sep 2024 12:21:06 +0900 Subject: [PATCH] :bug: :white_check_mark: Fix checkFun condition Signed-off-by: vankichi --- internal/test/data/vector/gen_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/test/data/vector/gen_test.go b/internal/test/data/vector/gen_test.go index 24f1c11bee..df0c9f0948 100644 --- a/internal/test/data/vector/gen_test.go +++ b/internal/test/data/vector/gen_test.go @@ -47,7 +47,7 @@ func TestFloat32VectorGenerator(t *testing.T) { } if got != nil { vectors := got(a.n, a.dim) - if len(vectors) != w.n && len(vectors[0]) != w.dim { + if !(len(vectors) == w.n && len(vectors[0]) == w.dim) { return errors.Errorf("got: \"%d\",\"%d\"\n\t\t\t\twant: \"%d\",\"%d\"", len(vectors), len(vectors[0]), w.n, w.dim) } } @@ -140,7 +140,7 @@ func TestUint8VectorGenerator(t *testing.T) { } if got != nil { vectors := got(a.n, a.dim) - if len(vectors) != w.n && len(vectors[0]) != w.dim { + if !(len(vectors) == w.n && len(vectors[0]) == w.dim) { return errors.Errorf("got: \"%d\",\"%d\"\n\t\t\t\twant: \"%d\",\"%d\"", len(vectors), len(vectors[0]), w.n, w.dim) } }