Skip to content

Commit

Permalink
Python 3 empty strings need to be bounded
Browse files Browse the repository at this point in the history
  • Loading branch information
KushalP committed Feb 16, 2014
1 parent 8958e48 commit 975306b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_sending_a_non_coalescing_event(self):

def test_force_leaving_of_a_node(self):
serf = client.SerfClient()
assert serf.force_leave('bad-node-name') == {b'Error': '', b'Seq': 1}
assert serf.force_leave('bad-node-name') == {b'Error': b'', b'Seq': 1}

def test_joining_a_non_existent_node(self):
serf = client.SerfClient()
Expand Down

0 comments on commit 975306b

Please sign in to comment.