Skip to content

Commit

Permalink
Test(fix): Fixed browser.get data.id type
Browse files Browse the repository at this point in the history
  • Loading branch information
fvdm committed Feb 16, 2017
1 parent 48dd407 commit 9d16326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ dotest.add ('browsers.get', function () {
gtmetrix.browsers.get (3, function (err, data) {
dotest.test (err)
.isObject ('fail', 'data', data)
.isExactly ('warn', 'data.id', data && data.id, '3')
.isExactly ('warn', 'data.id', data && data.id, 3)
.done ();
});
});
Expand Down

0 comments on commit 9d16326

Please sign in to comment.