Skip to content

Commit

Permalink
will this simpler form also fail on ci?
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Nov 24, 2024
1 parent c1878ff commit a21ed6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/migrations/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ def test_sqlmigrate_unrepresentable(self):
@override_settings(MIGRATION_MODULES={"migrations": "migrations.test_migrations"})
def test_sqlmigrate_transaction_keywords_not_colored(self):
out = io.StringIO()
out.isatty = lambda x: True
out.isatty = lambda: True
call_command("sqlmigrate", "migrations", "0001", stdout=out)
self.assertNotIn("\x1b", out.getvalue())

Expand Down

0 comments on commit a21ed6e

Please sign in to comment.