tests: fix filter_in_map_test.v (it did not have a `test_` function in it)

pull/8422/head^2
Delyan Angelov 2021-01-30 10:29:48 +02:00
parent 948f63b507
commit 5564a2c1da
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
fn filter_in_map_test() {
fn test_filter_in_map() {
x := [['']]
y := x.map(it.filter(it != ''))
assert y[0].len == 0