removed unnecessary call to free

This commit is contained in:
Raph
2025-05-24 02:13:08 +02:00
parent 9d122bd181
commit 5dbdf8321a

View File

@@ -733,7 +733,6 @@ test "escapeCSSValue - control characters and Unicode" {
result = try CSSValueAnalyzer.escapeCSSValue(allocator, "test\"quote\nline\\back");
try testing.expectEqual("\"test\\\"quote\\A line\\\\back\"", result);
allocator.free(result);
}
test "isValidPropertyName - CSS custom properties and vendor prefixes" {