]> source.dussan.org Git - rspamd.git/commitdiff
[Test] Fix broken unit tests
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Sat, 6 Apr 2019 11:39:36 +0000 (12:39 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Sat, 6 Apr 2019 11:39:36 +0000 (12:39 +0100)
test/lua/unit/logger.lua

index 29ff4c891c6c099912de385b43fa88096e6e237a..fb04bfde339e90d4b51f44759ef45cbc4819ce28 100644 (file)
@@ -1,19 +1,19 @@
 context("Logger unit tests", function()
   test("Logger functions", function()
     local log = require "rspamd_logger"
-    
+
     local cases = {
       {'string', 'string'},
       {'%1', 'string', 'string'},
-      {'%1', '1.100000', 1.1},
+      {'%1', '1.1', 1.1},
       {'%1', '1', 1},
       {'%1', 'true', true},
       {'%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'}},
+       {'%1', '{[1] = 1, [2] = 2.1, [k2] = test}', {1, 2.1, k2='test'}},
       {'%s', 'true', true},
     }
-    
+
     for _,c in ipairs(cases) do
       local s
       if c[3] then
@@ -22,7 +22,7 @@ context("Logger unit tests", function()
         s = log.slog(c[1])
       end
       assert_equal(s, c[2], string.format("'%s' doesn't match with '%s'",
-        c[2], s)) 
+        c[2], s))
     end
   end)
 end)
\ No newline at end of file