Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
macro1 committed Aug 1, 2014
1 parent 7bfb406 commit dff287b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion simple_history/tests/tests/test_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,6 @@ def test_create_and_delete(self):
def test_multiple(self):
document1 = models.Document.objects.create()
document2 = models.Document.objects.create()
historical = models.Document.history.as_of(datetime.now() + timedelta(days=1))
historical = models.Document.history.as_of(datetime.now()
+ timedelta(days=1))
self.assertEqual(list(historical), [document1, document2])

0 comments on commit dff287b

Please sign in to comment.