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

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
qasim committed Apr 11, 2016
1 parent 6cdb47f commit 8a9acd7
Showing 1 changed file with 15 additions and 19 deletions.
34 changes: 15 additions & 19 deletions test/courses/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,25 +344,21 @@ test.cb('/filter?q=instructor:%22Brown%22', t => {
.expect(200)
.expect([testData.reduce(doc => {
if (doc.code.includes('BIOD33')) {
doc['matched_meeting_sections'] = [
{
"code": "L01",
"size": 50,
"enrolment": 0,
"times": [
{
"day": "THURSDAY",
"start": 15,
"end": 17,
"duration": 2,
"location": "BV 363"
}
],
"instructors": [
"J Brown"
]
}
]
doc['matched_meeting_sections'] = [{
'code': 'L01',
'size': 50,
'enrolment': 0,
'times': [{
'day': 'THURSDAY',
'start': 15,
'end': 17,
'duration': 2,
'location': 'BV 363'
}],
'instructors': [
'J Brown'
]
}]
return doc
}
})])
Expand Down

0 comments on commit 8a9acd7

Please sign in to comment.