From c27c54e41288e867891e41c92557b32550368443 Mon Sep 17 00:00:00 2001 From: Hector Sanjuan Date: Tue, 18 Feb 2020 14:37:06 -0500 Subject: [PATCH] /test: fix bad ElemCount/10 lenght (should not be divided) --- test/basic_tests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/basic_tests.go b/test/basic_tests.go index 05c46e7..fd4798a 100644 --- a/test/basic_tests.go +++ b/test/basic_tests.go @@ -262,7 +262,7 @@ func SubtestCombinations(t *testing.T, ds dstore.Datastore) { lengths := []int{ 0, 1, - ElemCount / 10, + ElemCount, } perms( func(perm []int) { -- GitLab