Skip to content

Commit

Permalink
Merge pull request #303 from steven-cutting/extraspace
Browse files Browse the repository at this point in the history
Fix extra space in test_peek
  • Loading branch information
mrocklin committed Apr 12, 2016
2 parents d9be459 + 0d51707 commit 563f6dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolz/tests/test_itertoolz.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def test_topk_is_stable():

def test_peek():
alist = ["Alice", "Bob", "Carol"]
element, blist = peek(alist)
element, blist = peek(alist)
element == alist[0]
assert list(blist) == alist

Expand Down

0 comments on commit 563f6dd

Please sign in to comment.