Skip to content

Commit

Permalink
Merge pull request gregmalcolm#9 from rjo1970/106e4476f0f83e58c3702f9…
Browse files Browse the repository at this point in the history
…2ae53bfba537ebffa

pop confused me- this makes it clearer
  • Loading branch information
gregmalcolm committed Oct 27, 2011
2 parents 5c87af7 + 106e447 commit 68341ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python 2/koans/about_lists.py
Expand Up @@ -71,7 +71,7 @@ def test_insertions(self):
self.assertEqual(__, knight)

def test_popping_lists(self):
stack = [10, 20, 30]
stack = [10, 20, 30, 40]
stack.append('last')

self.assertEqual(__, stack)
Expand Down
2 changes: 1 addition & 1 deletion python 3/koans/about_lists.py
Expand Up @@ -72,7 +72,7 @@ def test_insertions(self):
self.assertEqual(__, knight)

def test_popping_lists(self):
stack = [10, 20, 30]
stack = [10, 20, 30, 40]
stack.append('last')

self.assertEqual(__, stack)
Expand Down

0 comments on commit 68341ed

Please sign in to comment.