Skip to content

Commit

Permalink
feat(app-runner) teste commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoPorfirio01 committed Aug 3, 2024
1 parent d4f34c4 commit 72a069a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app.controller.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ describe('AppController', () => {
});

describe('root', () => {
it('should return "Hello World!"', () => {
expect(appController.getHello()).toBe('Hello World!');
it('should return "Hello World !!!!!"', () => {
expect(appController.getHello()).toBe('Hello World !!!!!');
});
});
});
2 changes: 1 addition & 1 deletion src/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
return 'Hello World !!!!!';
}
}

0 comments on commit 72a069a

Please sign in to comment.