Skip to content

Commit

Permalink
Fixed a couple of stale tests caused by patch for #19462
Browse files Browse the repository at this point in the history
Commit was 088d3bc
  • Loading branch information
akaariai committed Dec 13, 2012
1 parent 088d3bc commit 7eba5fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/regressiontests/pagination/tests.py
Expand Up @@ -253,7 +253,8 @@ def test_first_page(self):
"<Article: Article 3>",
"<Article: Article 4>",
"<Article: Article 5>"
]
],
ordered=False
)
self.assertTrue(p.has_next())
self.assertFalse(p.has_previous())
Expand All @@ -272,7 +273,8 @@ def test_last_page(self):
"<Article: Article 7>",
"<Article: Article 8>",
"<Article: Article 9>"
]
],
ordered=False
)
self.assertFalse(p.has_next())
self.assertTrue(p.has_previous())
Expand Down

0 comments on commit 7eba5fb

Please sign in to comment.