diff options
Diffstat (limited to 'src/bun.js')
-rw-r--r-- | src/bun.js/test/expect.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/test/expect.zig b/src/bun.js/test/expect.zig index e7209e683..d6f8ebb12 100644 --- a/src/bun.js/test/expect.zig +++ b/src/bun.js/test/expect.zig @@ -513,7 +513,7 @@ pub const Expect = struct { const value_fmt = value.toFmt(globalObject, &formatter); const expected_fmt = expected.toFmt(globalObject, &formatter); if (not) { - const expected_line = "Expected to contain: not <green>{any}<r>\n"; + const expected_line = "Expected to not contain: <green>{any}<r>\n"; const fmt = comptime getSignature("toContain", "<green>expected<r>", true) ++ "\n\n" ++ expected_line; if (Output.enable_ansi_colors) { globalObject.throw(Output.prettyFmt(fmt, true), .{expected_fmt}); |