Skip to content

Commit

Permalink
removed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
partkyle committed Feb 10, 2012
1 parent 53bfbb4 commit 3c880ec
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/lib/email.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ describe('Email', function () {
var email = new Email();
fs.readFile(files[0], function(err, data) {
expect(err).to.not.be.ok;
console.log('buffer? %s', Buffer.isBuffer(data));
email.addFile({filename: 'content-image.png', content: data, contentType: 'image/png'});
expect(email.files[0].filename).to.equal('content-image.png');
expect(email.files[0].contentType).to.equal('image/png');
Expand Down

0 comments on commit 3c880ec

Please sign in to comment.