From 801f7f4ecdba96469adbf952bf1c51ba077e3c73 Mon Sep 17 00:00:00 2001 From: Brian Thorne Date: Mon, 22 May 2023 16:13:41 +1200 Subject: [PATCH] =?UTF-8?q?=F0=9F=96=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 81bbfed..432e7aa 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -290,7 +290,9 @@ def test_run_test_with_external_dir_context(data_dir_path): def test_run_http_config_with_headers(http_headers_config_filename): - result = runner.invoke(app, ["run", "--config", http_headers_config_filename, '--disable-redaction']) + result = runner.invoke( + app, ["run", "--config", http_headers_config_filename, "--disable-redaction"] + ) assert result.exit_code == 0, result.stderr data = result.stdout response = json.loads(data)