From c85d58e28df00e7d6e69e08f290767b8872dc22a Mon Sep 17 00:00:00 2001 From: Jeff Bradberry Date: Tue, 25 Jun 2019 11:47:06 -0400 Subject: [PATCH] The interactive flag for management commands doesn't seem to be a thing anymore --- awx/main/tests/functional/commands/test_commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/awx/main/tests/functional/commands/test_commands.py b/awx/main/tests/functional/commands/test_commands.py index 471e5f1be6..078ca96f2d 100644 --- a/awx/main/tests/functional/commands/test_commands.py +++ b/awx/main/tests/functional/commands/test_commands.py @@ -12,7 +12,6 @@ def run_command(name, *args, **options): command_runner = options.pop('command_runner', call_command) stdin_fileobj = options.pop('stdin_fileobj', None) options.setdefault('verbosity', 1) - options.setdefault('interactive', False) original_stdin = sys.stdin original_stdout = sys.stdout original_stderr = sys.stderr