Skip to content

Commit 394cec6

Browse files
move some tests to testsuite.helpers package
1 parent 7329efb commit 394cec6

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/borg/testsuite/efficient_collection_queue_test.py renamed to src/borg/testsuite/helpers/efficient_collection_queue_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pytest
22

3-
from ..helpers.datastruct import EfficientCollectionQueue
3+
from ...helpers.datastruct import EfficientCollectionQueue
44

55

66
class TestEfficientQueue:

src/borg/testsuite/lrucache_test.py renamed to src/borg/testsuite/helpers/lrucache_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import pytest
44

5-
from ..helpers.lrucache import LRUCache
5+
from ...helpers.lrucache import LRUCache
66

77

88
class TestLRUCache:

src/borg/testsuite/nanorst_test.py renamed to src/borg/testsuite/helpers/nanorst_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pytest
22

3-
from ..helpers.nanorst import rst_to_text
3+
from ...helpers.nanorst import rst_to_text
44

55

66
def test_inline():

0 commit comments

Comments
 (0)