mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
rand: fix incorrect generic function call (#15327)
This commit is contained in:
@ -348,7 +348,7 @@ fn test_shuffle() {
|
||||
}
|
||||
for digit in 0 .. 10 {
|
||||
for idx in 0 .. 10 {
|
||||
assert digits[digit][idx] > 10
|
||||
assert digits[digit][idx] >= 10
|
||||
}
|
||||
// eprintln('digits[$digit]: ${digits[digit]}')
|
||||
}
|
||||
|
Reference in New Issue
Block a user