aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test.lua b/tests/test.lua
index 728bdda..d47a062 100644
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -73,7 +73,7 @@ if lfs.symlinkattributes then
73 -- Checking symbolic link information (does not work in Windows) 73 -- Checking symbolic link information (does not work in Windows)
74 assert (os.execute ("ln -s "..tmpfile.." _a_link_for_test_")) 74 assert (os.execute ("ln -s "..tmpfile.." _a_link_for_test_"))
75 assert (lfs.attributes"_a_link_for_test_".mode == "file") 75 assert (lfs.attributes"_a_link_for_test_".mode == "file")
76 assert (lfs.symlinkattributes"_a_link_for_test_" == "link") 76 assert (lfs.symlinkattributes"_a_link_for_test_".mode == "link")
77 assert (os.remove"_a_link_for_test_") 77 assert (os.remove"_a_link_for_test_")
78end 78end
79 79