Skip to content

Commit

Permalink
fix serviceRegistry.unit.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Oct 2, 2023
1 parent 424986f commit a1a1de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/common/serviceRegistry.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ suite('Common - Service Registry', () => {
.setup((s) =>
s.addSingleton(
typemoq.It.isValue(mapping[0] as any),
typemoq.It.is((value) => mapping[1] === value),
typemoq.It.is((value: any) => value === mapping[1]),
),
)
.verifiable(typemoq.Times.atLeastOnce());
Expand Down

0 comments on commit a1a1de6

Please sign in to comment.