From 9f9b3942076bbcc6dc08a8e4d6148cf6592f321b Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sun, 23 Feb 2025 20:04:37 +0000 Subject: [PATCH] chore(tests): strip newlines and first line before comment len --- tests/edge_cases.luau | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/edge_cases.luau b/tests/edge_cases.luau index a974bad..5126463 100644 --- a/tests/edge_cases.luau +++ b/tests/edge_cases.luau @@ -74,9 +74,10 @@ return function(test: typeof(frktest.test)) local unzipResult = process.spawn("unzip", { "-z", "tests/data/max_comment_size.zip" }) assert(unzipResult.ok) - print(#unzipResult.stdout, #zip.comment) + local commentData = assert(string.match(unzipResult.stdout, "\n(.*)\n")) + -- Check that the comment is the same as the one in the ZIP file (only compare hashes) - check.equal(serde.hash("blake3", unzipResult.stdout), serde.hash("blake3", zip.comment)) + check.equal(serde.hash("blake3", commentData), serde.hash("blake3", zip.comment)) end) end) end