summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-06-16 18:22:57 +0700
committerstepshal <nessento@openmailbox.org>2016-06-16 18:22:57 +0700
commitab41c7766ced3f1b8f6b4ed317f0db4e0d71b897 (patch)
tree3315bb7587acb020cee88dbc0382d68671d7383e /tests
parent7c760ac0256aa1d27433e8f410ae014be2da2334 (diff)
downloadranger-ab41c7766ced3f1b8f6b4ed317f0db4e0d71b897.tar.gz
Add two blank lines where is expected
Diffstat (limited to 'tests')
-rw-r--r--tests/ranger/container/test_bookmarks.py1
-rw-r--r--tests/ranger/container/test_container.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/ranger/container/test_bookmarks.py b/tests/ranger/container/test_bookmarks.py
index 46c615c6..88791953 100644
--- a/tests/ranger/container/test_bookmarks.py
+++ b/tests/ranger/container/test_bookmarks.py
@@ -4,6 +4,7 @@ import pytest
 
 from ranger.container.bookmarks import Bookmarks
 
+
 def testbookmarks(tmpdir):
     # Bookmarks point to directory location and allow fast access to
     # 'favorite' directories. They are persisted to a bookmark file, plain text.
diff --git a/tests/ranger/container/test_container.py b/tests/ranger/container/test_container.py
index 140186d0..2b823912 100644
--- a/tests/ranger/container/test_container.py
+++ b/tests/ranger/container/test_container.py
@@ -4,6 +4,7 @@ from ranger.container import history
 HISTORY_TEST_ENTRIES = [str(k) for k in range(20)]
 OTHER_TEST_ENTRIES = [str(k) for k in range(40, 45)]
 
+
 def testhistorybasic():
     # A history is a buffer of limited size that stores the last `maxlen`
     # item added to it. It has a `current` index that serves as a cursor.