diff options
| author | Tim Graham <timograham@gmail.com> | 2024-05-23 09:11:58 -0400 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-05-23 17:19:48 +0200 |
| commit | bcbc4b9b8a4a47c8e045b060a9860a5c038192de (patch) | |
| tree | b042d98b06485755c32d88ed0f5492190c027561 /tests | |
| parent | 94ab56ee2e24d4764296580da66dbbdc9ba03b02 (diff) | |
Fixed typo in migrations test name.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/migrations/test_operations.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/migrations/test_operations.py b/tests/migrations/test_operations.py index d59548f7af..1caa647956 100644 --- a/tests/migrations/test_operations.py +++ b/tests/migrations/test_operations.py @@ -1380,8 +1380,8 @@ class OperationTests(OperationTestBase): self.assertEqual(sorted(definition[2]), ["field", "model_name", "name"]) @skipUnlessDBFeature("supports_stored_generated_columns") - def test_add_generate_field(self): - app_label = "test_add_generate_field" + def test_add_generated_field(self): + app_label = "test_add_generated_field" project_state = self.apply_operations( app_label, ProjectState(), |
