You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
ch07|006 is a continuation of ch07l005, where Edith did create such an item. The thing being tested here is that Edith's list items don't appear in Francis' list.
ch07|006 is indeed a continuation of ch07|005, but it is a continuation of the second test of ch07|005: test_multiple_users_can_start_lists_at_different_urls
And in test_multiple_users_can_start_lists_at_different_urls Edith does not create the second item.
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_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.The text was updated successfully, but these errors were encountered: