Skip to content

Commit

Permalink
test(container): fix nonsensical test
Browse files Browse the repository at this point in the history
Related to an accidental regression introduced in
4c42b97.
  • Loading branch information
freshgum-bubbles committed Oct 23, 2023
1 parent f1b56d0 commit 7edb8e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Container.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ describe('Container', function () {
});

it('should return the default container when "default" is passed', () => {
const container = Container.of(Symbol());
const container = Container.of('default');

expect(container).not.toBe(null);
expect(container).toStrictEqual(Container);
Expand Down

0 comments on commit 7edb8e3

Please sign in to comment.