aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/test/expect.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/bun.js/test/expect.zig')
-rw-r--r--src/bun.js/test/expect.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bun.js/test/expect.zig b/src/bun.js/test/expect.zig
index e0833f8ed..12f7011fb 100644
--- a/src/bun.js/test/expect.zig
+++ b/src/bun.js/test/expect.zig
@@ -312,9 +312,6 @@ pub const Expect = struct {
const not = this.flags.not;
var pass = right.isSameValue(left, globalObject);
- if (comptime Environment.allow_assert) {
- std.debug.assert(pass == JSC.C.JSValueIsStrictEqual(globalObject, right.asObjectRef(), left.asObjectRef()));
- }
if (not) pass = !pass;
if (pass) return thisValue;