Skip to content

Commit

Permalink
remove stray self.test from main ft
Browse files Browse the repository at this point in the history
  • Loading branch information
hjwp committed Mar 6, 2013
1 parent 53216e1 commit 5650f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mysite/fts/tests.py
Expand Up @@ -118,7 +118,7 @@ def test_voting_on_a_poll(self):
# She is taken to a poll 'results' page, which says
# "no-one has voted on this poll yet"
body = self.browser.find_element_by_tag_name('body')
self.test.assertIn("no-one has voted on this poll yet", body.text)
self.assertIn("no-one has voted on this poll yet", body.text)

# She also sees a form, which offers her several choices.
# There are three options with radio buttons
Expand Down

0 comments on commit 5650f82

Please sign in to comment.