Skip to content

Commit

Permalink
Adjust assertion to account for operation display changes.
Browse files Browse the repository at this point in the history
Address regression in django/django@27a3eee72.
  • Loading branch information
charettes committed Apr 3, 2024
1 parent 32dbb25 commit 50f51f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ def test_null_field_removal(self):
)
output = stdout.getvalue()
self.assertIn("null_field_removal/0002_set_nullable_foo_bar.py", output)
self.assertIn("- Set field bar of foo NULLable", output)
self.assertIn("Set field bar of foo NULLable", output)
self.assertIn("null_field_removal/0003_remove_foo_bar.py", output)
self.assertIn("- Remove field bar from foo", output)
self.assertIn("Remove field bar from foo", output)

@override_settings(
MIGRATION_MODULES={"tests": "tests.test_migrations.merge_conflict"}
Expand Down

0 comments on commit 50f51f4

Please sign in to comment.