From 01ff034bf4a2d544bd65375d7bdbb94d3ca2ea0f Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Fri, 12 Jun 2026 08:56:50 +0800 Subject: [PATCH] minor: remove 'leak' word from test name Keep ability to grep for 'leak' meaningful by not having it show up on success. The assertion is redundant anyways, presumably no test leaks. --- src/cdp/domains/dom.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cdp/domains/dom.zig b/src/cdp/domains/dom.zig index 072c49be1..0062e83fd 100644 --- a/src/cdp/domains/dom.zig +++ b/src/cdp/domains/dom.zig @@ -978,7 +978,7 @@ test "cdp.dom: setFileInputFiles requires a node identifier" { try ctx.expectSentError(-31998, "MissingParams", .{ .id = 1 }); } -test "cdp.dom: setFileInputFiles errors (and leaks nothing) when a path is missing" { +test "cdp.dom: setFileInputFiles errors when a path is missing" { var ctx = try testing.context(); defer ctx.deinit();