tests: Disable a test that's invalid

This commit is contained in:
Emmanuel Lepage Vallee 2019-02-22 11:47:03 -05:00
parent 36d7535cd5
commit ecec00f425
1 changed files with 6 additions and 6 deletions

View File

@ -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)