test(core): fix get url integration test

This commit is contained in:
Kamil Myśliwiec
2019-11-03 21:18:14 +01:00
parent 613a9f8847
commit 101c47c46a
2 changed files with 2 additions and 2 deletions

View File

@@ -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()',
);
}
});

View File

@@ -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()',
);
}
});