diff options
-rw-r--r-- | test/unit/path.moon | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/path.moon b/test/unit/path.moon index 67d78f8ca1..fafe84967e 100644 --- a/test/unit/path.moon +++ b/test/unit/path.moon @@ -16,7 +16,8 @@ char_u *path_next_component(char_u *fname); -- import constants parsed by ffi {:kEqualFiles, :kDifferentFiles, :kBothFilesMissing, :kOneFileMissing, :kEqualFileNames} = path NULL = ffi.cast 'void*', 0 -{:OK, :FAIL} = path +OK = 1 +FAIL = 0 describe 'path function', -> describe 'path_full_compare', -> |