diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2018-12-19 12:38:50 -0800 |
---|---|---|
committer | Timothee Cour <timothee.cour2@gmail.com> | 2018-12-19 16:11:23 -0800 |
commit | fc7df3283c11c71c60d079b5aea7deb70ffcb559 (patch) | |
tree | e572e946ae288db15893b6c79a021e6f944d225c /tests/stdlib | |
parent | 8fbe3b3b7d6b6cd19a71c238034524dc64aa703b (diff) | |
download | Nim-fc7df3283c11c71c60d079b5aea7deb70ffcb559.tar.gz |
fix test failure
Diffstat (limited to 'tests/stdlib')
-rw-r--r-- | tests/stdlib/tos.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/stdlib/tos.nim b/tests/stdlib/tos.nim index e49ab2506..577baea87 100644 --- a/tests/stdlib/tos.nim +++ b/tests/stdlib/tos.nim @@ -240,6 +240,7 @@ block absolutePath: doAssert absolutePath("/a", "b/") == "/a" block splitFile: + doAssert splitFile("") == ("", "", "") doAssert splitFile("abc/") == ("abc", "", "") doAssert splitFile("/") == ("/", "", "") doAssert splitFile("./abc") == (".", "abc", "") |