|
@@ -28,7 +28,8 @@ class NewVisitorTest(unittest.TestCase):
|
|
|
table = self.browser.find_element_by_id('id_list_table')
|
|
|
rows = table.find_elements_by_tag_name('tr')
|
|
|
self.assertTrue(
|
|
|
- any(row.text == '1: Buy peacock feathers' for row in rows)
|
|
|
+ any(row.text == '1: Buy peacock feathers' for row in rows),
|
|
|
+ "New to-do item did not show up in table!"
|
|
|
)
|
|
|
self.fail('Finish the test!')
|
|
|
|