From 22dcbc4d061433d5b9c22637d522a5f375718552 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 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 )