Lint fixes

This commit is contained in:
Randi Miller
2019-03-22 16:18:58 -04:00
parent e644ae83fd
commit b387d77128
2 changed files with 3 additions and 3 deletions

View File

@@ -69,8 +69,8 @@ describe('GET /heroes/:heroId', () => {
});
it('returns correct hero using search with difference case', async () => {
let hero = await generateUser({}, { username: 'TestUpperCaseName123' });
let heroRes = await user.get(`/hall/heroes/TestuPPerCasEName123`);
await generateUser({}, { username: 'TestUpperCaseName123' });
let heroRes = await user.get('/hall/heroes/TestuPPerCasEName123');
expect(heroRes.auth.local.username).to.equal('TestUpperCaseName123');
});
});