From 488a3c5850067d899b75ea88135c41fab9bc3140 Mon Sep 17 00:00:00 2001 From: ttv/Ismoh_ Date: Mon, 20 Dec 2021 17:29:33 +0100 Subject: [PATCH] Trying to add windows lua testing. See #14 36 --- .testing/tests/file_util_test.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.testing/tests/file_util_test.lua b/.testing/tests/file_util_test.lua index 9389ca9a9..800627488 100644 --- a/.testing/tests/file_util_test.lua +++ b/.testing/tests/file_util_test.lua @@ -162,7 +162,7 @@ end function TestFileUtil:testWriteBinaryFile() lu.assertErrorMsgContains("is not type of string!", fu.WriteBinaryFile) - local full_path = _G.noita_root_directory_path .. ".testing/write-temporary-binary-test-file.txt" + local full_path = _G.noita_root_directory_path .. "/.testing/write-temporary-binary-test-file.txt" fu.WriteBinaryFile(full_path, "File Content") lu.assertIsTrue(fu.Exists(full_path)) end