aboutsummaryrefslogtreecommitdiff
path: root/testes
diff options
context:
space:
mode:
Diffstat (limited to 'testes')
-rw-r--r--testes/strings.lua2
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
112do 112do
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, ',')
115end 115end
116 116
117-- repetitions with separator 117-- repetitions with separator