From c6b95537fa035a8b6e1b43a7d8a86c4ab7359f19 Mon Sep 17 00:00:00 2001 From: Cleiton de Lima Date: Tue, 1 Oct 2024 13:19:58 -0300 Subject: [PATCH] Added --no-color args in test migration (#670) --- auditlog_tests/test_two_step_json_migration.py | 1 + 1 file changed, 1 insertion(+) diff --git a/auditlog_tests/test_two_step_json_migration.py b/auditlog_tests/test_two_step_json_migration.py index 5beb560..8e05fd9 100644 --- a/auditlog_tests/test_two_step_json_migration.py +++ b/auditlog_tests/test_two_step_json_migration.py @@ -44,6 +44,7 @@ class AuditlogMigrateJsonTest(TestCase): def call_command(self, *args, **kwargs): outbuf = StringIO() errbuf = StringIO() + args = ("--no-color",) + args call_command( "auditlogmigratejson", *args, stdout=outbuf, stderr=errbuf, **kwargs )