From 949f3f8884b8d0782c2727f8c5eea81f87e1ee3f Mon Sep 17 00:00:00 2001 From: derekpierre Date: Wed, 13 Oct 2021 14:44:48 -0400 Subject: [PATCH] Fix failing test. --- tests/acceptance/cli/test_porter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acceptance/cli/test_porter.py b/tests/acceptance/cli/test_porter.py index 699b93357..fac4630dc 100644 --- a/tests/acceptance/cli/test_porter.py +++ b/tests/acceptance/cli/test_porter.py @@ -352,7 +352,7 @@ def test_blockchain_porter_cli_run_https_with_cors_origin(click_runner, result = click_runner.invoke(nucypher_cli, porter_run_command, catch_exceptions=False) assert result.exit_code == 0 assert PORTER_RUN_MESSAGE.format(http_scheme="https", http_port=Porter.DEFAULT_PORT) in result.output - assert PORTER_CORS_ALLOWED_ORIGINS.format(allow_origins=allow_origins) in result.output + assert PORTER_CORS_ALLOWED_ORIGINS.format(allow_origins=[allow_origins]) in result.output def test_blockchain_porter_cli_run_https_basic_auth(click_runner,