[test codestyle] shorten variable name for intentional similarity
This commit is contained in:
parent
ff18fc8994
commit
848322f1d1
1 changed files with 2 additions and 2 deletions
|
@ -99,6 +99,6 @@ def test_model_manager_lists_newest_teil_first():
|
||||||
|
|
||||||
assert t1.modified < t2.modified < t3.modified
|
assert t1.modified < t2.modified < t3.modified
|
||||||
|
|
||||||
all_teile = Teil.objects.all()
|
t = Teil.objects.all()
|
||||||
|
|
||||||
assert all_teile[2].modified < all_teile[1].modified < all_teile[0].modified
|
assert t[2].modified < t[1].modified < t[0].modified
|
||||||
|
|
Loading…
Add table
Reference in a new issue