Skip to content

Commit

Permalink
fix: rebase+merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
DonutEspresso committed Feb 22, 2018
1 parent 068dadf commit 5c908a1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ var clients = require('../lib');

describe('restify-client tests against real web server', function () {
it('have timings', function (done) {
var client = clients.createJsonClient({
url: 'https://netflix.com'
var client = clients.createStringClient({
url: 'https://www.netflix.com'
});

client.get('/', function (err, req, res) {
Expand All @@ -24,6 +24,7 @@ describe('restify-client tests against real web server', function () {
assert.isNumber(timings.firstByte);
assert.isNumber(timings.contentTransfer);
assert.isNumber(timings.total);
client.close();
done();
});
});
Expand Down

0 comments on commit 5c908a1

Please sign in to comment.