diff options
Diffstat (limited to '')
-rw-r--r-- | test/testsupport.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testsupport.lua b/test/testsupport.lua index b986088..4360b6b 100644 --- a/test/testsupport.lua +++ b/test/testsupport.lua | |||
@@ -7,7 +7,7 @@ function readfile(name) | |||
7 | end | 7 | end |
8 | 8 | ||
9 | function similar(s1, s2) | 9 | function similar(s1, s2) |
10 | return string.lower(string.gsub(s1 or "", "%s", "")) == | 10 | return string.lower(string.gsub(s1 or "", "%s", "")) == |
11 | string.lower(string.gsub(s2 or "", "%s", "")) | 11 | string.lower(string.gsub(s2 or "", "%s", "")) |
12 | end | 12 | end |
13 | 13 | ||