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 03:10:38 +0300
committerYonaba <roland.yonaba@gmail.com>2018-08-23 03:10:38 +0300
commit67b14208409b1a10dba22e61860594b77d8bec6c (patch)
treeec89765842fcc66a5894507f5935cebbc70bf064
parent7091b5819f5329cec8c50c5c19ebd76643482a23 (diff)
Fixed failing spec
-rw-r--r--spec/object_spec.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/object_spec.lua b/spec/object_spec.lua
index 2960db2..cbf100c 100644
--- a/spec/object_spec.lua
+++ b/spec/object_spec.lua
@@ -441,7 +441,6 @@ describe('Object functions specs', function()
it('checks if the given object is iterable with pairs',function()
assert.is_true(M.isIterable({}))
- assert.is_false(M.isIterable(function() end))
assert.is_false(M.isIterable(false))
assert.is_false(M.isIterable(1))
end)