Skip to content

Commit

Permalink
[test] Fix incorrect test, was not supposted to be added with previou…
Browse files Browse the repository at this point in the history
…s commit
  • Loading branch information
3rd-Eden committed Jul 29, 2018
1 parent 426e929 commit 541b70f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ describe('url-parse', function () {
it('maintains the port number for non-default port numbers', function () {
var parsed = parse('http://google.com:8080/pathname');

assume(parsed.host).equals('http://google.com:8080');
assume(parsed.host).equals('google.com:8080');
assume(parsed.href).equals('http://google.com:8080/pathname');
});
});
Expand Down

0 comments on commit 541b70f

Please sign in to comment.