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

github.com/Yonaba/Moses.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/object_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/object_spec.lua b/spec/object_spec.lua
index 18588ba..2960db2 100644
--- a/spec/object_spec.lua
+++ b/spec/object_spec.lua
@@ -146,7 +146,7 @@ describe('Object functions specs', function()
it('collects function names within an object',function()
local x = {}
function x.a() return end; function x.b() return end
- assert.is_true(M.isEqual(M.functions(x),{'a','b'}))
+ assert.is_true(M.same(M.functions(x),{'a','b'}))
end)
it('collects metatable functions if "recurseMt" arg is supplied',function()