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

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

This commit is contained in:
Delyan Angelov
2021-01-30 10:29:48 +02:00
parent 948f63b507
commit 5564a2c1da

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