aboutsummaryrefslogtreecommitdiff
path: root/test/unit/os
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-09-17 00:39:33 +0200
committerGitHub <noreply@github.com>2019-09-17 00:39:33 +0200
commit0b71bb73e8431400c870dcd458f322dc50da96d1 (patch)
treee212a952663ba3228905889437cd459407b4fd25 /test/unit/os
parent4b2d7bb5eafde6edbbd55b563e8f73dba4165853 (diff)
downloadrneovim-0b71bb73e8431400c870dcd458f322dc50da96d1.tar.gz
rneovim-0b71bb73e8431400c870dcd458f322dc50da96d1.tar.bz2
rneovim-0b71bb73e8431400c870dcd458f322dc50da96d1.zip
tests: improve error message with literat "~" directory (#11032)
Diffstat (limited to 'test/unit/os')
-rw-r--r--test/unit/os/fs_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/os/fs_spec.lua b/test/unit/os/fs_spec.lua
index 526a09e845..7fd71cb1ae 100644
--- a/test/unit/os/fs_spec.lua
+++ b/test/unit/os/fs_spec.lua
@@ -110,7 +110,7 @@ describe('fs.c', function()
describe('os_chdir', function()
itp('fails with path="~"', function()
- eq(false, os_isdir('~')) -- sanity check: no literal "~" directory.
+ eq(false, os_isdir('~'), 'sanity check: no literal "~" directory')
local length = 4096
local expected_cwd = cstr(length, '')
local cwd = cstr(length, '')