Skip to content

Commit fbfda27

Browse files
committed
🌿 Fix invalid test of isObjectOf<T>
1 parent c09efc1 commit fbfda27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

is_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ Deno.test("isObjectOf<T>", async (t) => {
280280
});
281281
await testWithExamples(
282282
t,
283-
isObjectOf({ a: (_: unknown): _ is unknown => true }),
283+
isObjectOf({ a: (_: unknown): _ is unknown => false }),
284284
{ excludeExamples: ["record"] },
285285
);
286286
await t.step("with optional properties", async (t) => {

0 commit comments

Comments
 (0)