From 2bbf9d9ea07caa910a2cd82bfb9c03e181b0b837 Mon Sep 17 00:00:00 2001 From: Terror Date: Mon, 24 Jun 2024 09:57:53 +1200 Subject: [PATCH] Update uuidv7_test.lua Oops, forgot to change the 4 for a 7 --- test/tool/net/uuidv7_test.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tool/net/uuidv7_test.lua b/test/tool/net/uuidv7_test.lua index 98281f9d9..063a9da94 100644 --- a/test/tool/net/uuidv7_test.lua +++ b/test/tool/net/uuidv7_test.lua @@ -13,7 +13,7 @@ -- TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -- PERFORMANCE OF THIS SOFTWARE. for _ = 1, 1000 do - local uuid = UuidV4() + local uuid = UuidV7() assert(#uuid == 36) assert(string.sub(uuid, 9, 9) == "-") assert(string.sub(uuid, 14, 14) == "-")