Skip to content
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.

Commit

Permalink
Missing semicolon on changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Akhilian committed Apr 4, 2017
1 parent a8bb958 commit 6bcf3f2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 3 additions & 5 deletions api/lib/domain/services/assessment-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,9 @@ function getScoredAssessment(assessmentId) {

resolve(scoredAssessment);
});

})

})
})
});
});
});
});
}

Expand Down
2 changes: 1 addition & 1 deletion api/lib/domain/services/challenge-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const PIX_LEVELS_FROM_1_TO_8 = [ 1, 2, 3, 4, 5, 6, 7, 8 ];
function _initializeNbKnowledgeTagsByLevel() {
const nbKnowledgeTagsByLevel = {};
PIX_LEVELS_FROM_1_TO_8.forEach(level => {
nbKnowledgeTagsByLevel[ level ] = 0
nbKnowledgeTagsByLevel[ level ] = 0;
});
return nbKnowledgeTagsByLevel;
}
Expand Down
2 changes: 0 additions & 2 deletions api/tests/unit/domain/services/assessment-service_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,6 @@ describe('Unit | Domain | Services | assessment-service', function () {
expect(service.getScoredAssessment).to.exist;
});



});

});

0 comments on commit 6bcf3f2

Please sign in to comment.