1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

bf: fix a bug in bf.resize() (var name coincides with function name)

This commit is contained in:
Vitalie Ciubotaru
2019-07-29 17:37:39 +09:00
committed by Alexander Medvednikov
parent 8484de86c7
commit 4100cca613
2 changed files with 5 additions and 5 deletions

View File

@@ -226,9 +226,9 @@ fn test_bf_reverse() {
fn test_bf_resize() {
rand.seed(time.now().uni)
len := 80
mut input := bf.new(len)
mut input := bf.new(rand.next(len) + 1)
for i := 0; i < 100; i++ {
input.resize(rand.next(input.getsize()) + 1)
input.resize(rand.next(len) + 1)
input.setbit(input.getsize() - 1)
}
assert input.getbit(input.getsize() - 1) == 1