summaryrefslogtreecommitdiff
path: root/bs4/tests/test_navigablestring.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2021-10-11 02:13:56 -0400
committerLeonard Richardson <leonardr@segfault.org>2021-10-11 02:13:56 -0400
commit535d047aef8edcf2aed517cd883f4ba95b298bd8 (patch)
treebc9bdecfe9f74efa052a75dad46de5b1fc71ae2e /bs4/tests/test_navigablestring.py
parented8c08d3fc933a714a8adc7de97ec0ab7121e5e6 (diff)
Moved the test classes to tests/__init__.py.
Diffstat (limited to 'bs4/tests/test_navigablestring.py')
-rw-r--r--bs4/tests/test_navigablestring.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bs4/tests/test_navigablestring.py b/bs4/tests/test_navigablestring.py
index e1d7508..37cb86a 100644
--- a/bs4/tests/test_navigablestring.py
+++ b/bs4/tests/test_navigablestring.py
@@ -1,4 +1,3 @@
-from .testing import SoupTest
from bs4.element import (
CData,
Comment,
@@ -10,6 +9,8 @@ from bs4.element import (
TemplateString,
)
+from . import SoupTest
+
class TestNavigableString(SoupTest):
def test_text_acquisition_methods(self):