From f8242124b88ed5712f43122e36c2fe53ea4c8980 Mon Sep 17 00:00:00 2001 From: dmiller Date: Thu, 6 Mar 2014 17:15:01 +0000 Subject: [PATCH] Fix NSEdoc formatting in unittest.lua --- nselib/unittest.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nselib/unittest.lua b/nselib/unittest.lua index 77dd403d1..c686c1fba 100644 --- a/nselib/unittest.lua +++ b/nselib/unittest.lua @@ -7,9 +7,11 @@ -- unittest.TestSuite class has this property, and tests can be -- added with add_test. Example: -- +-- -- local data = {"foo", "bar", "baz"} -- test_suite = unittest.TestSuite:new() -- test_suite:add_test(equal(data[2], "bar"), "data[2] should equal 'bar'") +-- -- -- The library is driven by the unittest NSE script. --