Skip to content

Commit c40491c

Browse files
committed
Fix tuple creation koan
1 parent 73ded55 commit c40491c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python3/koans/about_tuples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class AboutTuples(Koan):
77
def test_creating_a_tuple(self):
88
count_of_three = (1, 2, 5)
9-
self.assertEqual(5, __)
9+
self.assertEqual(__, count_of_three[2])
1010

1111
def test_tuples_are_immutable_so_item_assignment_is_not_possible(self):
1212
count_of_three = (1, 2, 5)

0 commit comments

Comments
 (0)