Skip to content

Commit 33f270a

Browse files
committed
Merge pull request #4 from partkyle/mocha
fixed an error
2 parents d6b3f4c + 2683628 commit 33f270a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/smtp.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('Smtp', function() {
1717
sg.setFromName('[email protected]');
1818
sg.addHeader('x-test', '[email protected]');
1919

20-
sg.deliver({from_address:'[email protected]', to: null, subject:'subject 1', html:'<b>Html 1</b>',}, function(err, message) {
20+
sg.deliver({from_address:'[email protected]', to: null, subject:'subject 1', html:'<b>Html 1</b>'}, function(err, message) {
2121
if (err) should.fail('There was an error in the delivery: ' + err);
2222
});
2323
});

0 commit comments

Comments
 (0)