From 06839ab3017d86e87db3ec740a2b5e00d9fe9e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C5=8Dshin?= Date: Fri, 12 Apr 2024 12:22:34 -0400 Subject: [PATCH] Change loop bound on uuidv4 test (#1143) A half second (on my machine) is too long for a unit test. 1000 iterations is probably still overkill, but 0.01 seconds is fine. Also made `y` local. --- test/tool/net/uuidv4_test.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tool/net/uuidv4_test.lua b/test/tool/net/uuidv4_test.lua index 08b4ac3c7..7369cfaee 100644 --- a/test/tool/net/uuidv4_test.lua +++ b/test/tool/net/uuidv4_test.lua @@ -12,14 +12,14 @@ -- PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -- TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -- PERFORMANCE OF THIS SOFTWARE. -for i = 1, 1000000 do +for _ = 1, 1000 do local uuid = UuidV4() assert(#uuid == 36) assert(string.sub(uuid, 9, 9) == "-") assert(string.sub(uuid, 14, 14) == "-") assert(string.sub(uuid, 15, 15) == "4") assert(string.sub(uuid, 19, 19) == "-") - y = string.sub(uuid, 20, 20) + local y = string.sub(uuid, 20, 20) assert(y == "8" or y == "9" or y == "a" or y == "b") assert(string.sub(uuid, 24, 24) == "-") end