diff options
Diffstat (limited to 'spec/unit/fs_spec.lua')
-rw-r--r-- | spec/unit/fs_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/fs_spec.lua b/spec/unit/fs_spec.lua index 621a7727..c2a842bf 100644 --- a/spec/unit/fs_spec.lua +++ b/spec/unit/fs_spec.lua | |||
@@ -1063,9 +1063,9 @@ describe("luarocks.fs #unit", function() | |||
1063 | end | 1063 | end |
1064 | assert.same(count, 3) | 1064 | assert.same(count, 3) |
1065 | assert.is_not.same(contents[tmpdir], true) | 1065 | assert.is_not.same(contents[tmpdir], true) |
1066 | assert.same(contents["intfile1"], true) | 1066 | assert.same(contents[P"intfile1"], true) |
1067 | assert.same(contents["intdir"], true) | 1067 | assert.same(contents[P"intdir"], true) |
1068 | assert.same(contents["intdir/intfile2"], true) | 1068 | assert.same(contents[P"intdir/intfile2"], true) |
1069 | end) | 1069 | end) |
1070 | 1070 | ||
1071 | it("uses the current working directory if the argument is nil", function() | 1071 | it("uses the current working directory if the argument is nil", function() |