diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-04-07 18:20:45 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-04-07 18:20:45 +0100 |
commit | 0ae6d8f0d0f16466121c66627afe299555fccb3a (patch) | |
tree | ebfe2199cf72d1d657c71e44a66505fd64635cc8 /test/lua | |
parent | 75a8e1fa3713588d723e05b92686346333800f78 (diff) | |
download | rspamd-0ae6d8f0d0f16466121c66627afe299555fccb3a.tar.gz rspamd-0ae6d8f0d0f16466121c66627afe299555fccb3a.zip |
Indicies in lua starts from 1.
Diffstat (limited to 'test/lua')
-rw-r--r-- | test/lua/unit/trie.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lua/unit/trie.lua b/test/lua/unit/trie.lua index 6fa7573f9..5191d9e26 100644 --- a/test/lua/unit/trie.lua +++ b/test/lua/unit/trie.lua @@ -16,10 +16,10 @@ context("Trie search functions", function() assert_not_nil(trie, "cannot create trie") local cases = { - {'test', true, {{4, 0}, {4, 1}}}, - {'she test test', true, {{3, 3}, {3, 2}, {8, 0}, {8, 1}, {13, 0}, {13, 1}}}, + {'test', true, {{4, 1}, {4, 2}}}, + {'she test test', true, {{3, 4}, {3, 3}, {8, 1}, {8, 2}, {13, 1}, {13, 2}}}, {'non-existent', false}, - {'str\0ing test', true, {{7, 4}, {12, 0}, {12, 1}}}, + {'str\0ing test', true, {{7, 5}, {12, 1}, {12, 2}}}, } local function comparetables(t1, t2) |