]> source.dussan.org Git - rspamd.git/commitdiff
[Refactor] Correct misspelled messages in tests
authorAlexander Moisseev <moiseev@mezonplus.ru>
Wed, 28 Jun 2017 07:18:46 +0000 (10:18 +0300)
committerAlexander Moisseev <moiseev@mezonplus.ru>
Wed, 28 Jun 2017 07:18:46 +0000 (10:18 +0300)
test/lua/unit/base64.lua
test/lua/unit/siphash.lua

index 73180add885f9e88cd1a8d1e226bb2fa953735fc..1ed04f6f72ce5de36cbe2e105a5f11a99f42bc68 100644 (file)
@@ -119,7 +119,7 @@ vehemence of any carnal pleasure.]]
     local res = ffi.C.base64_test(true, 1000000, 1024)
     local t2 = ffi.C.rspamd_get_ticks()
 
-    print("Refrence base64 (1K): " .. tostring(t2 - t1) .. " sec")
+    print("Reference base64 (1K): " .. tostring(t2 - t1) .. " sec")
     assert_not_equal(res, 0)
   end)
   test("Base64 test optimized vectors 1K", function()
@@ -135,7 +135,7 @@ vehemence of any carnal pleasure.]]
     local res = ffi.C.base64_test(true, 1000000, 512)
     local t2 = ffi.C.rspamd_get_ticks()
 
-    print("Refrence base64 (512): " .. tostring(t2 - t1) .. " sec")
+    print("Reference base64 (512): " .. tostring(t2 - t1) .. " sec")
     assert_not_equal(res, 0)
   end)
   test("Base64 test optimized vectors 512", function()
@@ -151,7 +151,7 @@ vehemence of any carnal pleasure.]]
     local res = ffi.C.base64_test(true, 100000, 10240)
     local t2 = ffi.C.rspamd_get_ticks()
 
-    print("Refrence base64 (10K): " .. tostring(t2 - t1) .. " sec")
+    print("Reference base64 (10K): " .. tostring(t2 - t1) .. " sec")
     assert_not_equal(res, 0)
   end)
   test("Base64 test optimized vectors 10K", function()
index 5406cf9fc925bd834cb1b9e3e742692adcd3d9e1..3c92d25817e8563a0c80fbdcd7bfcef6ab8925ab 100644 (file)
@@ -16,7 +16,7 @@ context("Siphash check functions", function()
      local res = ffi.C.siphash24_test(true, 100000, 1024)
     local t2 = ffi.C.rspamd_get_ticks()
 
-    print("Refrence siphash (1KB): " .. tostring(t2 - t1) .. " sec")
+    print("Reference siphash (1KB): " .. tostring(t2 - t1) .. " sec")
     assert_not_equal(res, 0)
   end)
   test("Siphash test optimized vectors (1KB)", function()
@@ -32,7 +32,7 @@ context("Siphash check functions", function()
      local res = ffi.C.siphash24_test(true, 1000000, 5)
     local t2 = ffi.C.rspamd_get_ticks()
 
-    print("Refrence siphash (5B): " .. tostring(t2 - t1) .. " sec")
+    print("Reference siphash (5B): " .. tostring(t2 - t1) .. " sec")
     assert_not_equal(res, 0)
   end)
   test("Siphash test optimized vectors (5B)", function()
@@ -48,7 +48,7 @@ context("Siphash check functions", function()
     local res = ffi.C.siphash24_test(true, 1000000, 50)
     local t2 = ffi.C.rspamd_get_ticks()
 
-    print("Refrence siphash (50B): " .. tostring(t2 - t1) .. " sec")
+    print("Reference siphash (50B): " .. tostring(t2 - t1) .. " sec")
     assert_not_equal(res, 0)
   end)
   test("Siphash test optimized vectors (50B)", function()