summaryrefslogtreecommitdiff
path: root/mocha_test/compose.js
diff options
context:
space:
mode:
Diffstat (limited to 'mocha_test/compose.js')
-rw-r--r--mocha_test/compose.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/mocha_test/compose.js b/mocha_test/compose.js
index 27b1869..85306a5 100644
--- a/mocha_test/compose.js
+++ b/mocha_test/compose.js
@@ -31,7 +31,7 @@ describe('compose', function(){
context('a function errors', function(){
it('yields the error and does not call later functions', function(done){
var add1called = false;
- var mul3error = new Error('mul3 error')
+ var mul3error = new Error('mul3 error');
var add2 = function (n, cb) {
setTimeout(function () {
cb(null, n + 2);