Skip to content

Commit c535eb6

Browse files
authoredFeb 14, 2019
Merge pull request #299 from aomdoa/fixToughCookieDep
Limit the tough-cookie to 2.5 as 3.x removes node 0.10 support
2 parents 131abd7 + 488947b commit c535eb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/spec/request-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ describe('Request-Promise', function () {
208208
var cookiejar = rp.jar();
209209

210210
expect(function () {
211-
cookiejar.setCookie(sessionCookie, 'https://api.mydomain.com');
211+
cookiejar.setCookie(sessionCookie.toString(), 'https://api.mydomain.com');
212212
}).to.not.throw();
213213

214214
});

0 commit comments

Comments
 (0)
Please sign in to comment.