Skip to content

Commit

Permalink
Update python2 test: test_tuples_of_one_look_peculiar
Browse files Browse the repository at this point in the history
  • Loading branch information
david.valderrama authored and kjc committed Jun 20, 2019
1 parent 1ed3991 commit 75b7492
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python2/koans/about_tuples.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def test_tuples_can_only_be_changed_through_replacement(self):
def test_tuples_of_one_look_peculiar(self):
self.assertEqual(__, (1).__class__)
self.assertEqual(__, (1,).__class__)
self.assertEqual(__, ("I'm a tuple",))
self.assertEqual(__, ("Not a tuple"))
self.assertEqual(__, ("I'm a tuple",).__class__)
self.assertEqual(__, ("Not a tuple").__class__)

def test_tuple_constructor_can_be_surprising(self):
self.assertEqual(__, tuple("Surprise!"))
Expand Down

0 comments on commit 75b7492

Please sign in to comment.