Skip to content

Commit dff287b

Browse files
committed
Fix line length
1 parent 7bfb406 commit dff287b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

simple_history/tests/tests/test_manager.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,6 @@ def test_create_and_delete(self):
8383
def test_multiple(self):
8484
document1 = models.Document.objects.create()
8585
document2 = models.Document.objects.create()
86-
historical = models.Document.history.as_of(datetime.now() + timedelta(days=1))
86+
historical = models.Document.history.as_of(datetime.now()
87+
+ timedelta(days=1))
8788
self.assertEqual(list(historical), [document1, document2])

0 commit comments

Comments
 (0)