Skip to content

Commit 16f3624

Browse files
committed
Syntax
1 parent 69321be commit 16f3624

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/server/plural.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ describe('Server', () => {
689689
.end(done)
690690
})
691691

692-
it('should rewrite using query without params', function (done) {
692+
it('should rewrite using query without params', (done) => {
693693
const expectedPost = _.cloneDeep(db.posts[0])
694694
expectedPost.comments = [ db.comments[0], db.comments[1] ]
695695
request(server)
@@ -698,7 +698,7 @@ describe('Server', () => {
698698
.end(done)
699699
})
700700

701-
it('should rewrite using params and query', function (done) {
701+
it('should rewrite using params and query', (done) => {
702702
request(server)
703703
.get('/comments/special/1-quux')
704704
.expect([db.comments[4]])

0 commit comments

Comments
 (0)