summaryrefslogtreecommitdiff
path: root/src/beautifulsoup/tests/test_soup.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2010-12-29 10:38:46 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2010-12-29 10:38:46 -0500
commit7ba9e49cada146978c1f02d9c28430fdcf56ab72 (patch)
tree77fd6a9d2ab9940569e21e0bcd6b29fed33b03ee /src/beautifulsoup/tests/test_soup.py
parent017a21625f347665ad23da6dd109b9af29b4b443 (diff)
Refactored the code that turns HTML fragments into parser-specific documents for test purposes.
Diffstat (limited to 'src/beautifulsoup/tests/test_soup.py')
-rw-r--r--src/beautifulsoup/tests/test_soup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/beautifulsoup/tests/test_soup.py b/src/beautifulsoup/tests/test_soup.py
index 80357f0..571164a 100644
--- a/src/beautifulsoup/tests/test_soup.py
+++ b/src/beautifulsoup/tests/test_soup.py
@@ -41,9 +41,9 @@ class FollowThatTag(SoupTest):
def setUp(self):
ml = """
<a id="x">1</a>
- <A id="a">2</a>
- <b id="b">3</a>
- <b href="foo" id="x">4</a>
+ <A id="a">2</A>
+ <b id="b">3</b>
+ <b href="foo" id="x">4</b>
<ac width=100>4</ac>"""
self.soup = BeautifulStoneSoup(ml)