Merge pull request #244 from UltiRequiem/master

chore: remove unnecessary type
This commit is contained in:
Kamil Mysliwiec 2022-08-23 13:19:32 +02:00 committed by GitHub
commit 56a4bcb5d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ describe('AppController', () => {
describe('getHello', () => { describe('getHello', () => {
it('should return "Hello World!"', () => { it('should return "Hello World!"', () => {
const appController = app.get<AppController>(AppController); const appController = app.get(AppController);
expect(appController.getHello()).toBe('Hello World!'); expect(appController.getHello()).toBe('Hello World!');
}); });
}); });