Skip to content
This repository has been archived by the owner on May 28, 2018. It is now read-only.

Commit

Permalink
Remove linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrohee committed Sep 11, 2016
1 parent 15c0cb6 commit e934b2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions server/api/application/test/application.api.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ describe('api: application', () => {
let app

before(() => {
app = new Server({isTest : true}).getApp()
app = new Server({ isTest: true }).getApp()
})

describe('When requesting /api/application/ping', () => {
Expand All @@ -25,7 +25,7 @@ describe('api: application', () => {
})
})

describe('When requesting /api/application/ping', () => {
describe('When requesting /api/application/ping', () => {
it('should return pong', (done) => {
supertest(app)
.get('/api/application/ping')
Expand Down
2 changes: 1 addition & 1 deletion server/api/system/test/system.api.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ describe('api: system', () => {
let app

before(() => {
app = new Server({isTest : true}).getApp()
app = new Server({ isTest: true }).getApp()
})

describe('When requesting /api/ping', () => {
Expand Down

0 comments on commit e934b2a

Please sign in to comment.