From fbe3f5dfb33534f6a95e43e2e13da9a9645831da Mon Sep 17 00:00:00 2001 From: Dylan Conway Date: Thu, 12 Jan 2023 13:59:27 -0800 Subject: [PATCH] pointer type --- src/bun.js/test/jest.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bun.js/test/jest.zig b/src/bun.js/test/jest.zig index 01c5bcbce9..4b31f7309a 100644 --- a/src/bun.js/test/jest.zig +++ b/src/bun.js/test/jest.zig @@ -1772,7 +1772,7 @@ pub const DescribeScope = struct { var scope = allocator.create(DescribeScope) catch unreachable; scope.* = .{ .label = (label.toSlice(allocator).cloneIfNeeded(allocator) catch unreachable).slice(), - .parent = active orelse this, + .parent = active, .file_id = this.file_id, }; var new_this = DescribeScope.Class.make(ctx, scope);