Skip to content

Commit

Permalink
test(connector-besu): fix hardcoded test port #767
Browse files Browse the repository at this point in the history
Fixes #767

Signed-off-by: Peter Somogyvari <[email protected]>
  • Loading branch information
petermetz committed Apr 5, 2021
1 parent 277e2d7 commit eaefbab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ test(testCase, async (t: Test) => {
const server = http.createServer(expressApp);
const listenOptions: IListenOptions = {
hostname: "0.0.0.0",
port: 32845,
port: 0,
server,
};
const addressInfo = (await Servers.listen(listenOptions)) as AddressInfo;
Expand Down

0 comments on commit eaefbab

Please sign in to comment.