Skip to content

Commit bf6985f

Browse files
author
Eric Koleda
committed
Fix lint warnings in test
1 parent 655dba3 commit bf6985f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/test.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -772,16 +772,14 @@ describe('Utilities', function() {
772772
});
773773

774774
describe('#setTokenMethod()', function() {
775-
var decodeJwt_ = OAuth2.decodeJwt_;
776-
777775
it('should defautl to POST', function(done) {
778776
mocks.UrlFetchApp.resultFunction = function(url, urlOptions) {
779777
assert.equal(urlOptions.method, 'post');
780778
done();
781779
};
782780
var service = OAuth2.createService('test')
783781
.setGrantType('client_credentials')
784-
.setTokenUrl('http://www.example.com/')
782+
.setTokenUrl('http://www.example.com/');
785783
service.exchangeGrant_();
786784
});
787785

0 commit comments

Comments
 (0)