Skip to content

Commit 9f23c5a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 36d44b7 commit 9f23c5a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

tests/test_manager.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import ntpath
22
import os
33
import posixpath
4-
import sys
54
import sqlite3
6-
5+
import sys
76
from unittest.mock import patch
87

98
import pytest
@@ -15,6 +14,7 @@
1514
LocalFileIdManager,
1615
)
1716

17+
1818
@pytest.fixture
1919
def test_path(fs_helpers):
2020
path = "test_path"
@@ -620,9 +620,9 @@ def test_db_journal_mode(any_fid_manager_class, fid_db_path, jp_root_dir, db_jou
620620
assert actual_journal_mode[0].upper() == expected_journal_mode
621621

622622

623-
# This test demonstrates an issue raised in
623+
# This test demonstrates an issue raised in
624624
# https://github.com/jupyter-server/jupyter_server_fileid/pull/76
625-
# which was later fixed in
625+
# which was later fixed in
626626
# https://github.com/jupyter-server/jupyter_server_fileid/pull/77
627627
#
628628
# We use this unit test to catch this edge case and ensure
@@ -657,4 +657,3 @@ def test_multiple_fileIdManager_connections_after_exception(fid_db_path):
657657
# make sure no exceptions were raised.
658658
manager_2 = ArbitraryFileIdManager(db_path=fid_db_path)
659659
manager_2.copy(original_file_path, another_copy_location)
660-

0 commit comments

Comments
 (0)