Removed unused lines in multiple_database test.

This commit is contained in:
Tim Graham 2016-09-07 09:48:31 -04:00
parent ccf7adb064
commit 8cae9bb772
1 changed files with 1 additions and 7 deletions

View File

@ -94,13 +94,7 @@ class QueryTestCase(TestCase):
Book.objects.using('default').get(title="Dive into Python")
def test_refresh(self):
dive = Book()
dive.title = "Dive into Python"
dive = Book()
dive.title = "Dive into Python"
dive.published = datetime.date(2009, 5, 4)
dive.save(using='other')
dive.published = datetime.date(2009, 5, 4)
dive = Book(title="Dive into Python", published=datetime.date(2009, 5, 4))
dive.save(using='other')
dive2 = Book.objects.using('other').get()
dive2.title = "Dive into Python (on default)"