diff --git a/test/smtp.test.js b/test/smtp.test.js
index 01efca1b0..04fb97047 100644
--- a/test/smtp.test.js
+++ b/test/smtp.test.js
@@ -17,7 +17,7 @@ describe('Smtp', function() {
sg.setFromName('from@sendgrid.com');
sg.addHeader('x-test', 'from@sendgrid.com');
- sg.deliver({from_address:'from@example.com', to: null, subject:'subject 1', html:'Html 1',}, function(err, message) {
+ sg.deliver({from_address:'from@example.com', to: null, subject:'subject 1', html:'Html 1'}, function(err, message) {
if (err) should.fail('There was an error in the delivery: ' + err);
});
});