Updated mana class to pass failing tests

This commit is contained in:
poixen 2015-11-25 19:57:11 +01:00
parent ce3a443a65
commit 3ffb11d2e9
2 changed files with 72 additions and 23 deletions

View file

@ -27,7 +27,7 @@ public class ManaTest {
public void shouldNotAllowNullCopyConstructor() {
// given
expectedException.expect(NullPointerException.class);
expectedException.expectMessage("The passed in Mana can not be null");
expectedException.expectMessage("The passed in mana can not be null");
// when
Mana nullMana = null;