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.
This commit is contained in:
Jōshin 2024-04-12 12:22:34 -04:00 committed by GitHub
parent 39dde41516
commit 06839ab301
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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