diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2026-06-05 12:10:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-05 12:10:10 +0200 |
| commit | a2348c85fc6c20087935c74cd99340dd4ef2dcdc (patch) | |
| tree | cac239b31e1866a2d0c4df5285857ada28a1f4e5 /tests/basic | |
| parent | 8c2d3dca633629effad17ccc98730234f740d03f (diff) | |
Fixed #37139 -- Fixed inlines crash on parent models with db_default on primary key.
Diffstat (limited to 'tests/basic')
| -rw-r--r-- | tests/basic/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basic/tests.py b/tests/basic/tests.py index ed655833e2..a81724b70f 100644 --- a/tests/basic/tests.py +++ b/tests/basic/tests.py @@ -554,6 +554,7 @@ class ModelTest(TestCase): cases = [ Article(), Article(id=None), + PrimaryKeyWithDbDefault(), ] for case in cases: with self.subTest(case=case): |
