summary refs log tree commit diff stats
path: root/tests/stdlib
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2018-12-19 12:38:50 -0800
committerTimothee Cour <timothee.cour2@gmail.com>2018-12-19 16:11:23 -0800
commitfc7df3283c11c71c60d079b5aea7deb70ffcb559 (patch)
treee572e946ae288db15893b6c79a021e6f944d225c /tests/stdlib
parent8fbe3b3b7d6b6cd19a71c238034524dc64aa703b (diff)
downloadNim-fc7df3283c11c71c60d079b5aea7deb70ffcb559.tar.gz
fix test failure
Diffstat (limited to 'tests/stdlib')
-rw-r--r--tests/stdlib/tos.nim1
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", "")