From c40491c67cfef1c6b74ddacf7c85fe2ff52ae572 Mon Sep 17 00:00:00 2001 From: Daniel Karp Date: Sat, 8 Feb 2014 15:19:27 -0500 Subject: [PATCH] Fix tuple creation koan --- python3/koans/about_tuples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python3/koans/about_tuples.py b/python3/koans/about_tuples.py index 9833c40c6..76c193395 100644 --- a/python3/koans/about_tuples.py +++ b/python3/koans/about_tuples.py @@ -6,7 +6,7 @@ class AboutTuples(Koan): def test_creating_a_tuple(self): count_of_three = (1, 2, 5) - self.assertEqual(5, __) + self.assertEqual(__, count_of_three[2]) def test_tuples_are_immutable_so_item_assignment_is_not_possible(self): count_of_three = (1, 2, 5)