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:
authorYonaba <roland.yonaba@gmail.com>2018-08-23 02:59:14 +0300
committerYonaba <roland.yonaba@gmail.com>2018-08-23 02:59:14 +0300
commitf508a235c17916668275b1c448230615c4f14964 (patch)
tree9a9499292ac1a0696aaa796d2e0b9eab1b1ca5ae
parent66970fbe7c03ae02253f929cc9aab9cc28486a50 (diff)
Fixed failing spec
-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()