From 22055b2b214ad701635fb155410ecac1caca5c8f Mon Sep 17 00:00:00 2001 From: Cleiton Lima Date: Tue, 1 Oct 2024 10:07:29 -0300 Subject: [PATCH] Added --no-color args in test migration --- 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 0b3bfff..7df115e 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 )