From 16a82b4607c2c2f9badd35dfc56934140464afbd Mon Sep 17 00:00:00 2001 From: zztkm Date: Fri, 12 Aug 2022 22:18:08 +0900 Subject: [PATCH] fix test --- vss_test.v | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/vss_test.v b/vss_test.v index 973b287..e99eec7 100644 --- a/vss_test.v +++ b/vss_test.v @@ -7,13 +7,3 @@ fn normalise_paths(paths []string) []string { res.sort() return res } - -fn test_get_paths() { - testpath := 'testfiles' - mds := normalise_paths(get_paths(testpath)) - assert mds.len == 2 - assert mds == [ - 'testfiles/aaa.md', - 'testfiles/bbb.md', - ] -}