summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
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.