Skip to content

Commit

Permalink
Added --no-color args in test migration (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
CleitonDeLima authored Oct 1, 2024
1 parent 07a3a83 commit 22dcbc4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions auditlog_tests/test_two_step_json_migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def make_logentry(self):
def call_command(self, *args, **kwargs):
outbuf = StringIO()
errbuf = StringIO()
args = ("--no-color",) + args
call_command(
"auditlogmigratejson", *args, stdout=outbuf, stderr=errbuf, **kwargs
)
Expand Down

0 comments on commit 22dcbc4

Please sign in to comment.