Make port number dynamic in test

This commit is contained in:
Ben Hardill 2022-08-14 15:09:48 +01:00
parent 30956b5441
commit 58b951e134
No known key found for this signature in database
GPG Key ID: 74DD076979ABB1E7
1 changed files with 1 additions and 1 deletions

View File

@ -2322,7 +2322,7 @@ describe('HTTP Request Node', function() {
var n2 = helper.getNode("n2"); var n2 = helper.getNode("n2");
n2.on('input', function(msg) { n2.on('input', function(msg) {
try{ try{
msg.payload.should.equal('RequestError: Parse Error: Missing expected CR after header value : http://localhost:10234/') msg.payload.should.equal(`RequestError: Parse Error: Missing expected CR after header value : http://localhost:${port}/`)
done() done()
} catch (err) { } catch (err) {
done(err) done(err)