docs: refactor `WelcomeComponent` unit test (#42441)

PR Close #42441
This commit is contained in:
Sam Severance 2021-06-01 20:26:25 -04:00 committed by Andrew Kushnir
parent 1fe1dd1f19
commit c1a9f07ea1
1 changed files with 1 additions and 1 deletions

View File

@ -130,6 +130,6 @@ describe('WelcomeComponent', () => {
}));
it('TestBed and Component UserService should be the same', () => {
expect(userService === componentUserService).toBe(true);
expect(userService).toBe(componentUserService);
});
});