Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python2/koans/about_comprehension.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_double_list_comprehension(self):
def test_creating_a_set_with_set_comprehension(self):
comprehension = { x for x in 'aabbbcccc'}

self.assertEqual(__, comprehension) # rememeber that set members are unique
self.assertEqual(__, comprehension) # remember that set members are unique

def test_creating_a_dictionary_with_dictionary_comprehension(self):
dict_of_weapons = {'first': 'fear', 'second': 'surprise',
Expand Down