diff options
Diffstat (limited to 'testes')
-rw-r--r-- | testes/strings.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testes/strings.lua b/testes/strings.lua index a0204309..9bb52b35 100644 --- a/testes/strings.lua +++ b/testes/strings.lua | |||
@@ -111,7 +111,7 @@ assert(string.rep('', 10) == '') | |||
111 | 111 | ||
112 | do | 112 | do |
113 | checkerror("too large", string.rep, 'aa', math.maxinteger); | 113 | checkerror("too large", string.rep, 'aa', math.maxinteger); |
114 | checkerror("too large", string.rep, 'a', math.maxinteger/2, ',') | 114 | checkerror("too large", string.rep, 'a', math.maxinteger, ',') |
115 | end | 115 | end |
116 | 116 | ||
117 | -- repetitions with separator | 117 | -- repetitions with separator |