diff options
author | Kim Alvefur <zash@zash.se> | 2016-07-23 18:58:58 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-07-23 18:58:58 +0200 |
commit | 35a906e990f5e38c08688997815345f7071b7b4f (patch) | |
tree | 5b3d9eec6726161611eafac7f8efdaa3b87d4dff /tests/test_util_uuid.lua | |
parent | e8c53c5d209281433aedfd5b3d70e10b06d1dac5 (diff) | |
parent | f0e16572c0b2e83b9d174733ef8b627711dd0031 (diff) | |
download | prosody-35a906e990f5e38c08688997815345f7071b7b4f.tar.gz prosody-35a906e990f5e38c08688997815345f7071b7b4f.zip |
Merge 0.10->trunk
Diffstat (limited to 'tests/test_util_uuid.lua')
-rw-r--r-- | tests/test_util_uuid.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_util_uuid.lua b/tests/test_util_uuid.lua index d3f72bb4..07d75025 100644 --- a/tests/test_util_uuid.lua +++ b/tests/test_util_uuid.lua @@ -13,7 +13,7 @@ local pattern = "^" .. table.concat({ }, "%-") .. "$"; function generate(generate) - for i = 1, 100 do + for _ = 1, 100 do assert_is(generate():match(pattern)); end end |