Skip to content

Commit

Permalink
fix: unit test typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marcj committed Oct 3, 2023
1 parent a1c34f1 commit 7a1027a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/tests/module.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ test('interface provider can be exported', () => {

const serviceContainer = new ServiceContainer(app);

serviceContainer.getInjector(app).get<Test>().toBe(TEST);
expect(serviceContainer.getInjector(app).get<Test>()).toBe(TEST);
});

test('non-exported providers can not be overwritten', () => {
Expand Down

0 comments on commit 7a1027a

Please sign in to comment.