Skip to content

Commit

Permalink
Fix test check
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgilmerproj committed May 16, 2019
1 parent a562fca commit f449c55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_recipes_imperial.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def test_get_hop_additions_raises_percent_length_mismatch(self):
self.builder.get_hop_additions(percent_list, boil_time_list)
self.assertEquals(
str(ctx.exception),
u"The length of percent_list must equal length of self.grain_list",
u"The length of percent_list must equal length of self.hop_list",
) # noqa

def test_get_hop_additions_raises_boil_time_length_mismatch(self):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_recipes_si.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def test_get_hop_additions_raises_percent_length_mismatch(self):
self.builder.get_hop_additions(percent_list, boil_time_list)
self.assertEquals(
str(ctx.exception),
u"The length of percent_list must equal length of self.grain_list",
u"The length of percent_list must equal length of self.hop_list",
) # noqa

def test_get_hop_additions_raises_boil_time_length_mismatch(self):
Expand Down

0 comments on commit f449c55

Please sign in to comment.