Skip to content

Commit 92429b5

Browse files
committed
Finished about_lists
1 parent 849abea commit 92429b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python2/koans/about_list_assignments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class AboutListAssignments(Koan):
1212
def test_non_parallel_assignment(self):
1313
names = ["John", "Smith"]
14-
self.assertEqual(__, names)
14+
self.assertEqual(["John", "Smith"], names)
1515

1616
def test_parallel_assignments(self):
1717
first_name, last_name = ["John", "Smith"]

0 commit comments

Comments
 (0)