move some tests to testsuite.helpers package

This commit is contained in:
Thomas Waldmann 2025-06-11 23:19:02 +02:00
parent 7329efba14
commit 394cec653b
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
import pytest
from ..helpers.datastruct import EfficientCollectionQueue
from ...helpers.datastruct import EfficientCollectionQueue
class TestEfficientQueue:

View file

@ -2,7 +2,7 @@ from tempfile import TemporaryFile
import pytest
from ..helpers.lrucache import LRUCache
from ...helpers.lrucache import LRUCache
class TestLRUCache:

View file

@ -1,6 +1,6 @@
import pytest
from ..helpers.nanorst import rst_to_text
from ...helpers.nanorst import rst_to_text
def test_inline():