mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Fixed #28893 -- Removed unnecessary dict.items() calls.
This commit is contained in:
parent
183fb7b2b9
commit
a862af3839
14 changed files with 25 additions and 25 deletions
|
@ -47,7 +47,7 @@ class GetUniqueCheckTests(unittest.TestCase):
|
|||
(('foo', 'bar'), ('bar', 'baz'))),
|
||||
}
|
||||
|
||||
for test_name, (unique_together, normalized) in data.items():
|
||||
for unique_together, normalized in data.values():
|
||||
class M(models.Model):
|
||||
foo = models.IntegerField()
|
||||
bar = models.IntegerField()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue