Skip to content

Commit

Permalink
fix util.types.isNativeError test
Browse files Browse the repository at this point in the history
  • Loading branch information
petamoriken committed Dec 12, 2024
1 parent 49a726b commit da357ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit_node/util_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ Deno.test({
fn() {
assert(util.types.isNativeError(new Error()));
assert(util.types.isNativeError(new TypeError()));
assert(!util.types.isNativeError(new DOMException()));
assert(util.types.isNativeError(new DOMException()));
},
});

Expand Down

0 comments on commit da357ae

Please sign in to comment.