summaryrefslogtreecommitdiff
path: root/tests/reverse_lookup
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-10-19 08:31:38 -0400
committerTim Graham <timograham@gmail.com>2013-10-19 08:31:38 -0400
commit96d1d4e29275f4f5900f0725975d2ad0a4d05816 (patch)
tree17b846e3b77f68fbb3b1dc7a2ff413f574c62ce1 /tests/reverse_lookup
parent5f52590368063fc8284e23be492d83ba751f66bf (diff)
downloaddjango-96d1d4e29275f4f5900f0725975d2ad0a4d05816.tar.gz
Removed unused local variables in tests.
Diffstat (limited to 'tests/reverse_lookup')
-rw-r--r--tests/reverse_lookup/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/reverse_lookup/tests.py b/tests/reverse_lookup/tests.py
index ca16db0d31..a1b33b26fa 100644
--- a/tests/reverse_lookup/tests.py
+++ b/tests/reverse_lookup/tests.py
@@ -19,7 +19,7 @@ class ReverseLookupTests(TestCase):
question="What's the second question?",
creator=jim
)
- new_choice = Choice.objects.create(
+ Choice.objects.create(
poll=first_poll,
related_poll=second_poll,
name="This is the answer."