Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Jan 29, 2025
1 parent a1cc29c commit e348d5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/zwave-js/src/lib/test/cc/BasicCC.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ test("the Get command should serialize correctly", async (t) => {
BasicCommand.Get, // CC Command
]),
);
await t.expect(basiccc.serialize({} as any)).resolves.toStrictEqual(
await t.expect(basicCC.serialize({} as any)).resolves.toStrictEqual(
expected,
);
});
Expand Down Expand Up @@ -63,7 +63,7 @@ test("the Set command should serialize correctly", async (t) => {
55, // target value
]),
);
await t.expect(basiccc.serialize({} as any)).resolves.toStrictEqual(
await t.expect(basicCC.serialize({} as any)).resolves.toStrictEqual(
expected,
);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ integrationTest(
"Veeeeeeeeeeeeeeeeeeeeeeeeery loooooooooooooooooong parameter name",
reportsToFollow: 0,
});
const serialized = await configcc.serialize(
const serialized = await configCC.serialize(
mockNode.encodingContext,
);
const segment1 = serialized.subarray(
Expand Down

0 comments on commit e348d5e

Please sign in to comment.