From 5564a2c1da74a4cb7bd27d447967bb818109f797 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 30 Jan 2021 10:29:48 +0200 Subject: [PATCH] tests: fix filter_in_map_test.v (it did not have a `test_` function in it) --- vlib/v/tests/filter_in_map_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/tests/filter_in_map_test.v b/vlib/v/tests/filter_in_map_test.v index 640b438c80..68e453f330 100644 --- a/vlib/v/tests/filter_in_map_test.v +++ b/vlib/v/tests/filter_in_map_test.v @@ -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