Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/project/test_eachfile.lua')
-rw-r--r--tests/project/test_eachfile.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/project/test_eachfile.lua b/tests/project/test_eachfile.lua
index c7bc3e5..8ddf235 100644
--- a/tests/project/test_eachfile.lua
+++ b/tests/project/test_eachfile.lua
@@ -40,8 +40,7 @@
function suite.ReturnedObjectIncludesVpath()
files { "hello.h", "hello.c" }
- vpaths { ["*.h"] = "Headers" }
prepare()
local iter = project.eachfile(prj)
- test.isequal("Headers/hello.h", iter().vpath)
+ test.isequal("hello.h", iter().vpath)
end