From e6ffbada8873069c4dbd38de163581d21f681b96 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 15:07:31 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/cmdline/commands/test_profile.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tests/cmdline/commands/test_profile.py b/tests/cmdline/commands/test_profile.py index e818628836..125fe3e5a4 100644 --- a/tests/cmdline/commands/test_profile.py +++ b/tests/cmdline/commands/test_profile.py @@ -247,7 +247,17 @@ def test_setup_email_required(run_cli_command, isolated_config, tmp_path, entry_ def test_setup_no_use_rabbitmq(run_cli_command, isolated_config, tmp_path): """Test the ``--no-use-rabbitmq`` option.""" profile_name = 'profile-no-broker' - options = ['core.sqlite_dos', '-n', '--email', 'a@a', '--filepath', str(tmp_path), '--profile', profile_name, '--no-use-rabbitmq'] + options = [ + 'core.sqlite_dos', + '-n', + '--email', + 'a@a', + '--filepath', + str(tmp_path), + '--profile', + profile_name, + '--no-use-rabbitmq', + ] result = run_cli_command(cmd_profile.profile_setup, options, use_subprocess=False) assert f'Created new profile `{profile_name}`.' in result.output