(squash this) Fix build errors

This commit is contained in:
ValarDragon 2018-08-14 11:42:40 -07:00
parent 6beaf6e72d
commit 2fe34491ba
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ func TestCompactBitArrayNumOfTrueBitsBefore(t *testing.T) {
require.NoError(t, err) require.NoError(t, err)
for i := 0; i < len(tc.bAIndex); i++ { for i := 0; i < len(tc.bAIndex); i++ {
require.Equal(t, tc.trueValueIndex[i], bA.NumOfTrueBitsBefore(tc.bAIndex[i]), "tc %d, i %d", tcIndex, i) require.Equal(t, tc.trueValueIndex[i], bA.NumTrueBitsBefore(tc.bAIndex[i]), "tc %d, i %d", tcIndex, i)
} }
}) })
} }