Skip to content

Commit

Permalink
test(core): fix get url integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Nov 3, 2019
1 parent 613a9f8 commit 101c47c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration/nest-application/get-url/e2e/express.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('Get URL (Express Application)', () => {
await app.getUrl();
} catch (err) {
expect(err).to.be.eql(
'app.listen needs to be called before calling app.getUrl',
'app.listen() needs to be called before calling app.getUrl()',
);
}
});
Expand Down
2 changes: 1 addition & 1 deletion integration/nest-application/get-url/e2e/fastify.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('Get URL (Fastify Application)', () => {
await app.getUrl();
} catch (err) {
expect(err).to.be.eql(
'app.listen needs to be called before calling app.getUrl',
'app.listen() needs to be called before calling app.getUrl()',
);
}
});
Expand Down

0 comments on commit 101c47c

Please sign in to comment.