Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pfbrowning committed Apr 7, 2020
1 parent 4162499 commit eeac0af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion routes/controllers/now-playing.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const internetRadio = require('node-internet-radio')
const { validationResult } = require('express-validator');
const { validationResult } = require('express-validator')
const httpErrors = require('../../utilities/http-errors.js')
const logger = require('../../logger')

Expand Down
4 changes: 2 additions & 2 deletions spec/jwt-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('jwt', () => {
cache: true,
rateLimit: true,
jwksRequestsPerMinute: 5,
jwksUri: `http://issuer.com/.well-known/jwks.json`
jwksUri: 'http://issuer.com/.well-known/jwks.json'
}
},
{
Expand All @@ -39,7 +39,7 @@ describe('jwt', () => {
cache: true,
rateLimit: true,
jwksRequestsPerMinute: 5,
jwksUri: `http://another-issuer.com/.well-known/jwks.json`
jwksUri: 'http://another-issuer.com/.well-known/jwks.json'
}
}
]
Expand Down

0 comments on commit eeac0af

Please sign in to comment.