diff options
author | Leonard Richardson <leonardr@segfault.org> | 2021-10-09 13:08:49 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2021-10-09 13:08:49 -0400 |
commit | ed8c08d3fc933a714a8adc7de97ec0ab7121e5e6 (patch) | |
tree | 4af1bf910bb39854f549c7c7debd7e161993cd66 /bs4/tests/test_html5lib.py | |
parent | 88a49ae01506e33613a544e237b6430ba3c67319 (diff) |
Moved testing.py into the same package as the tests.
Diffstat (limited to 'bs4/tests/test_html5lib.py')
-rw-r--r-- | bs4/tests/test_html5lib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/tests/test_html5lib.py b/bs4/tests/test_html5lib.py index 9ac6ccc..ae87e4c 100644 --- a/bs4/tests/test_html5lib.py +++ b/bs4/tests/test_html5lib.py @@ -8,7 +8,7 @@ try: except ImportError as e: HTML5LIB_PRESENT = False from bs4.element import SoupStrainer -from bs4.testing import ( +from .testing import ( HTML5TreeBuilderSmokeTest, SoupTest, skipIf, |