From 9d11522599bb9f9fd6ad22c15c6168a4f2ac9b4e Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 8 Sep 2013 12:20:01 -0700 Subject: Removed some more unused local vars --- tests/custom_pk/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/custom_pk') diff --git a/tests/custom_pk/tests.py b/tests/custom_pk/tests.py index 59bc64754f..a452561edb 100644 --- a/tests/custom_pk/tests.py +++ b/tests/custom_pk/tests.py @@ -141,12 +141,12 @@ class CustomPKTests(TestCase): def test_unicode_pk(self): # Primary key may be unicode string - bus = Business.objects.create(name='jaźń') + Business.objects.create(name='jaźń') def test_unique_pk(self): # The primary key must also obviously be unique, so trying to create a # new object with the same primary key will fail. - e = Employee.objects.create( + Employee.objects.create( employee_code=123, first_name="Frank", last_name="Jones" ) sid = transaction.savepoint() -- cgit v1.2.1