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");
n2.on('input', function(msg) {
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()
} catch (err) {
done(err)