summaryrefslogtreecommitdiff
path: root/bs4/tests/test_tree.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2016-07-26 21:23:15 -0400
committerLeonard Richardson <leonardr@segfault.org>2016-07-26 21:23:15 -0400
commitf248e7d7935e65eb1f2280c14c9b9d310e5dc9e5 (patch)
tree7ee47c99de1e5b50d7aa20af1a2ce32ddf1c1372 /bs4/tests/test_tree.py
parentf2ef3bd2662799d19af52fc4f6af31d322c897ca (diff)
parentf5c16bf55136202b4b955104c6f33e210ead32c9 (diff)
Spelling cleanup contributed by Ville Skyttä.
Diffstat (limited to 'bs4/tests/test_tree.py')
-rw-r--r--bs4/tests/test_tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/tests/test_tree.py b/bs4/tests/test_tree.py
index 984b527..a4fe0b1 100644
--- a/bs4/tests/test_tree.py
+++ b/bs4/tests/test_tree.py
@@ -346,7 +346,7 @@ class TestFindAllByAttribute(TreeTest):
strainer = SoupStrainer(attrs={'id' : 'first'})
self.assertSelects(tree.find_all(strainer), ['Match.'])
- def test_find_all_with_missing_atribute(self):
+ def test_find_all_with_missing_attribute(self):
# You can pass in None as the value of an attribute to find_all.
# This will match tags that do not have that attribute set.
tree = self.soup("""<a id="1">ID present.</a>