summaryrefslogtreecommitdiff
path: root/tests/test_soup.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2011-02-27 16:51:56 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2011-02-27 16:51:56 -0500
commitdc682f38b36294d9b102aed3be506d46f8d37b59 (patch)
tree6f0d20e8440240ffe4b88dc2a48893431dc81240 /tests/test_soup.py
parentd9f49a66e4a7dfd93823f2396796ed6c55f69648 (diff)
Renamed the beautifulsoup module to bs4 to save typing.
Diffstat (limited to 'tests/test_soup.py')
-rw-r--r--tests/test_soup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_soup.py b/tests/test_soup.py
index 690db39..d283b8a 100644
--- a/tests/test_soup.py
+++ b/tests/test_soup.py
@@ -2,9 +2,9 @@
"""Tests of Beautiful Soup as a whole."""
import unittest
-from beautifulsoup.element import SoupStrainer
-from beautifulsoup.dammit import EntitySubstitution, UnicodeDammit
-from beautifulsoup.testing import SoupTest
+from bs4.element import SoupStrainer
+from bs4.dammit import EntitySubstitution, UnicodeDammit
+from bs4.testing import SoupTest
class TestSelectiveParsing(SoupTest):