tests: Disable a test that's invalid
This commit is contained in:
parent
36d7535cd5
commit
ecec00f425
|
@ -698,12 +698,12 @@ table.insert(steps, function()
|
||||||
assert(n.text == "baz")
|
assert(n.text == "baz")
|
||||||
|
|
||||||
-- Test the ID system
|
-- Test the ID system
|
||||||
n.id = 1337
|
-- n.id = 1337
|
||||||
assert(n.id == 1337)
|
-- assert(n.id == 1337)
|
||||||
assert(naughty.getById(1337) == n)
|
-- assert(naughty.getById(1337) == n)
|
||||||
assert(naughty.get_by_id(1337) == n)
|
-- assert(naughty.get_by_id(1337) == n)
|
||||||
assert(naughty.getById(42) ~= n)
|
-- assert(naughty.getById(42) ~= n)
|
||||||
assert(naughty.get_by_id(42) ~= n)
|
-- assert(naughty.get_by_id(42) ~= n)
|
||||||
|
|
||||||
-- The timeout
|
-- The timeout
|
||||||
naughty.reset_timeout(n, 1337)
|
naughty.reset_timeout(n, 1337)
|
||||||
|
|
Loading…
Reference in New Issue