Skip to content

Commit

Permalink
Merge pull request #111 from strongloop/port_fix
Browse files Browse the repository at this point in the history
Fix port selection in client-test.js
  • Loading branch information
rashmihunt committed Jun 28, 2017
2 parents c41099e + eadabdc commit e257139
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/client-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -693,8 +693,7 @@ describe('SOAP Client', function() {
it('should return error in the call when Fault was returned', function(done) {
var server = null;
var hostname = '127.0.0.1';
var port = 15099;
var baseUrl = 'http://' + hostname + ':' + port;
var port = 0;

server = http.createServer(function (req, res) {
res.statusCode = 200;
Expand Down

0 comments on commit e257139

Please sign in to comment.