From ecaebf0867eac20da884cd8c3a8242e4b2d47cbc Mon Sep 17 00:00:00 2001 From: asoseil Date: Tue, 9 Jan 2018 01:47:33 +0100 Subject: [PATCH] validate test fixed --- realize/projects_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/realize/projects_test.go b/realize/projects_test.go index b9d4669..7aef1df 100644 --- a/realize/projects_test.go +++ b/realize/projects_test.go @@ -114,8 +114,8 @@ func TestProject_Reload(t *testing.T) { func TestProject_Validate(t *testing.T) { data := map[string]bool{ "": false, - "/test/.path/": false, - "./test/path/": false, + "/test/.path/": true, + "./test/path/": true, "/test/path/test.html": false, "/test/path/test.go": false, "/test/ignore/test.go": false,