diff options
author | Elmer Thomas <elmer@ThinkingSerious.com> | 2015-10-13 10:27:25 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@ThinkingSerious.com> | 2015-10-13 10:27:25 -0700 |
commit | a5d9f8985136d948a8c47e525192a87ed60f61bf (patch) | |
tree | 74f7d8ec5d7d9d0643574e6190b008009d847992 /test/lib/sendgrid.test.js | |
parent | 2cb34372ef0f31352f7c90015a45e1200cb849da (diff) | |
parent | 7b0688796ed0a7e04c696f7af9695f57fdca5bad (diff) | |
download | sendgrid-nodejs-a5d9f8985136d948a8c47e525192a87ed60f61bf.zip sendgrid-nodejs-a5d9f8985136d948a8c47e525192a87ed60f61bf.tar.gz sendgrid-nodejs-a5d9f8985136d948a8c47e525192a87ed60f61bf.tar.bz2 |
Merge pull request #187 from sendgrid/tb-ccwebapiv2.0.0
Change to param to use Web API instead of X-SMTPAPI header
Diffstat (limited to 'test/lib/sendgrid.test.js')
-rw-r--r-- | test/lib/sendgrid.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/sendgrid.test.js b/test/lib/sendgrid.test.js index 9b5654a..ad293e0 100644 --- a/test/lib/sendgrid.test.js +++ b/test/lib/sendgrid.test.js @@ -12,7 +12,7 @@ var nock = require('nock'); describe('SendGrid', function () { it('version should be set', function() { var sendgrid = SendGrid(API_USER, API_KEY); - expect(sendgrid.version).to.equal("1.9.2"); + expect(sendgrid.version).to.equal("2.0.0"); }); it('should be an instance of SendGrid', function() { |