In ch07l006, there is an useless assertion that sneaked in.
Basically, that test:
self.assertNotIn('make a fly', page_text)
is useless because in test_multiple_users_can_start_lists_at_different_urls Edith did not create a second list item with ...make a fly. So that particular assertion would never fail and just brings a little bit of confusion.
In ch07l006, there is an useless assertion that sneaked in.
Basically, that test:
is useless because in
test_multiple_users_can_start_lists_at_different_urlsEdith did not create a second list item with...make a fly. So that particular assertion would never fail and just brings a little bit of confusion.