Skip to content

Commit

Permalink
Fix hop type validation test
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgilmerproj committed Sep 23, 2017
1 parent 5bbd72a commit 0f5d00b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_validators.py
Expand Up @@ -32,7 +32,7 @@ def test_validate_hop_type_raises(self):
with self.assertRaises(ValidatorException) as ctx:
validate_hop_type(u'bad hop type')
self.assertEquals(str(ctx.exception),
u"Unkown hop type 'bad hop type', must use pellet, whole, plug") # noqa
u"Unkown hop type 'bad hop type', must use pellet, whole, whole wet, plug") # noqa

def test_validate_percentage_pass(self):
out = validate_percentage(0.97)
Expand Down

0 comments on commit 0f5d00b

Please sign in to comment.