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/null_fk_ordering | |
| parent | 5f52590368063fc8284e23be492d83ba751f66bf (diff) | |
Removed unused local variables in tests.
Diffstat (limited to 'tests/null_fk_ordering')
| -rw-r--r-- | tests/null_fk_ordering/tests.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/null_fk_ordering/tests.py b/tests/null_fk_ordering/tests.py index 70873244ac..ebbd089c36 100644 --- a/tests/null_fk_ordering/tests.py +++ b/tests/null_fk_ordering/tests.py @@ -15,9 +15,9 @@ class NullFkOrderingTests(TestCase): """ author_1 = Author.objects.create(name='Tom Jones') author_2 = Author.objects.create(name='Bob Smith') - article_1 = Article.objects.create(title='No author on this article') - article_2 = Article.objects.create(author=author_1, title='This article written by Tom Jones') - article_3 = Article.objects.create(author=author_2, title='This article written by Bob Smith') + Article.objects.create(title='No author on this article') + Article.objects.create(author=author_1, title='This article written by Tom Jones') + Article.objects.create(author=author_2, title='This article written by Bob Smith') # We can't compare results directly (since different databases sort NULLs to # different ends of the ordering), but we can check that all results are @@ -27,13 +27,13 @@ class NullFkOrderingTests(TestCase): s = SystemInfo.objects.create(system_name='System Info') f = Forum.objects.create(system_info=s, forum_name='First forum') p = Post.objects.create(forum=f, title='First Post') - c1 = Comment.objects.create(post=p, comment_text='My first comment') - c2 = Comment.objects.create(comment_text='My second comment') + Comment.objects.create(post=p, comment_text='My first comment') + Comment.objects.create(comment_text='My second comment') s2 = SystemInfo.objects.create(system_name='More System Info') f2 = Forum.objects.create(system_info=s2, forum_name='Second forum') p2 = Post.objects.create(forum=f2, title='Second Post') - c3 = Comment.objects.create(comment_text='Another first comment') - c4 = Comment.objects.create(post=p2, comment_text='Another second comment') + Comment.objects.create(comment_text='Another first comment') + Comment.objects.create(post=p2, comment_text='Another second comment') # We have to test this carefully. Some databases sort NULL values before # everything else, some sort them afterwards. So we extract the ordered list |
