We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 849abea commit 92429b5Copy full SHA for 92429b5
1 file changed
python2/koans/about_list_assignments.py
@@ -11,7 +11,7 @@
11
class AboutListAssignments(Koan):
12
def test_non_parallel_assignment(self):
13
names = ["John", "Smith"]
14
- self.assertEqual(__, names)
+ self.assertEqual(["John", "Smith"], names)
15
16
def test_parallel_assignments(self):
17
first_name, last_name = ["John", "Smith"]
0 commit comments