Skip to content

Commit

Permalink
revert accidental inclusion of print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
adamstallard committed Jan 23, 2013
1 parent 4acd17e commit 98470cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vows/context.js
Expand Up @@ -28,7 +28,7 @@ this.Context = function (vow, ctx, env) {
if (typeof(e) === 'boolean' && args.length === 0) {
that.emitter.emit.call(that.emitter, 'success', e);
} else {
if (e) { console.log('hi'); that.emitter.emit.apply(that.emitter, ['error', e].concat(args)) }
if (e) { that.emitter.emit.apply(that.emitter, ['error', e].concat(args)) }
else { that.emitter.emit.apply(that.emitter, ['success'].concat(args)) }
}
};
Expand Down

0 comments on commit 98470cb

Please sign in to comment.