From 08011471d4ca1bdfc1dbce6489757c1ff9d7241a Mon Sep 17 00:00:00 2001 From: Ryan Morshead Date: Fri, 8 Jan 2021 15:55:13 -0800 Subject: [PATCH] Fix missing find_available_port arg --- idom/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idom/testing.py b/idom/testing.py index 1c0667789..c9ddd2602 100644 --- a/idom/testing.py +++ b/idom/testing.py @@ -74,7 +74,7 @@ def create_mount_and_server( ) ), host, - port or find_available_port(), + port or find_available_port(host), server_config, run_kwargs, app,