diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2011-01-03 16:57:55 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2011-01-03 16:57:55 -0500 |
commit | ea57d5122f1df133927e266e5fabbf0ef767f460 (patch) | |
tree | 31c5c42356ff48c138459259bba551c5a5963b74 /src/beautifulsoup/tests/test_tree.py | |
parent | 020bab27f80446db8780f43c893451bb98b06e4d (diff) |
Moved the test helpers out of the test directory.
Diffstat (limited to 'src/beautifulsoup/tests/test_tree.py')
-rw-r--r-- | src/beautifulsoup/tests/test_tree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/beautifulsoup/tests/test_tree.py b/src/beautifulsoup/tests/test_tree.py index 42430d3..344a462 100644 --- a/src/beautifulsoup/tests/test_tree.py +++ b/src/beautifulsoup/tests/test_tree.py @@ -12,7 +12,7 @@ methods tested here. import re from beautifulsoup import BeautifulSoup from beautifulsoup.element import SoupStrainer, Tag -from helpers import SoupTest +from beautifulsoup.testing import SoupTest class TreeTest(SoupTest): |