diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-19 08:31:38 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-19 08:31:38 -0400 |
| commit | 96d1d4e29275f4f5900f0725975d2ad0a4d05816 (patch) | |
| tree | 17b846e3b77f68fbb3b1dc7a2ff413f574c62ce1 /tests/select_for_update/tests.py | |
| parent | 5f52590368063fc8284e23be492d83ba751f66bf (diff) | |
Removed unused local variables in tests.
Diffstat (limited to 'tests/select_for_update/tests.py')
| -rw-r--r-- | tests/select_for_update/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/select_for_update/tests.py b/tests/select_for_update/tests.py index 7e06cc809a..b95a56fe4b 100644 --- a/tests/select_for_update/tests.py +++ b/tests/select_for_update/tests.py @@ -254,7 +254,7 @@ class SelectForUpdateTests(TransactionTestCase): means that it will be either committed or rolled back by Django, which will release any locks held by the SELECT FOR UPDATE. """ - people = list(Person.objects.select_for_update()) + list(Person.objects.select_for_update()) self.assertTrue(transaction.is_dirty()) @skipUnlessDBFeature('has_select_for_update') |
