diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/lua/unit/logger.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lua/unit/logger.lua b/test/lua/unit/logger.lua index e382ab7e4..29ff4c891 100644 --- a/test/lua/unit/logger.lua +++ b/test/lua/unit/logger.lua @@ -11,6 +11,7 @@ context("Logger unit tests", function() {'%1', '{[1] = 1, [2] = test}', {1, 'test'}}, {'%1', '{[k1] = 1, [k2] = test}', {k1=1, k2='test'}}, {'%1', '{[1] = 1, [2] = 2.100000, [k2] = test}', {1, 2.1, k2='test'}}, + {'%s', 'true', true}, } for _,c in ipairs(cases) do |