@@ -37,11 +37,12 @@ func TestFindPerson(t *testing.T) {
3737 assert .True (spell .HasSpellInformation )
3838 assert .NotNil (spell .SpellInformation )
3939 assert .Equal ("exiva 'name'" , spell .SpellInformation .Formula )
40- assert .Equal (4 , len (spell .SpellInformation .Vocation ))
40+ assert .Equal (5 , len (spell .SpellInformation .Vocation ))
4141 assert .Equal ("Druid" , spell .SpellInformation .Vocation [0 ])
4242 assert .Equal ("Knight" , spell .SpellInformation .Vocation [1 ])
43- assert .Equal ("Paladin" , spell .SpellInformation .Vocation [2 ])
44- assert .Equal ("Sorcerer" , spell .SpellInformation .Vocation [3 ])
43+ assert .Equal ("Monk" , spell .SpellInformation .Vocation [2 ])
44+ assert .Equal ("Paladin" , spell .SpellInformation .Vocation [3 ])
45+ assert .Equal ("Sorcerer" , spell .SpellInformation .Vocation [4 ])
4546 assert .False (spell .SpellInformation .GroupAttack )
4647 assert .False (spell .SpellInformation .GroupHealing )
4748 assert .True (spell .SpellInformation .GroupSupport )
@@ -52,9 +53,9 @@ func TestFindPerson(t *testing.T) {
5253 assert .Equal (8 , spell .SpellInformation .Level )
5354 assert .Equal (20 , spell .SpellInformation .Mana )
5455 assert .Equal (80 , spell .SpellInformation .Price )
55- assert .Equal (12 , len (spell .SpellInformation .City ))
56+ assert .Equal (13 , len (spell .SpellInformation .City ))
5657 assert .Equal ("Ab'Dendriel" , spell .SpellInformation .City [0 ])
57- assert .Equal ("Yalahar" , spell .SpellInformation .City [11 ])
58+ assert .Equal ("Yalahar" , spell .SpellInformation .City [12 ])
5859 assert .False (spell .SpellInformation .Premium )
5960 assert .False (spell .HasRuneInformation )
6061}
@@ -85,9 +86,10 @@ func TestHeavyMagicMissileRune(t *testing.T) {
8586 assert .True (spell .HasSpellInformation )
8687 assert .NotNil (spell .SpellInformation )
8788 assert .Equal ("adori vis" , spell .SpellInformation .Formula )
88- assert .Equal (2 , len (spell .SpellInformation .Vocation ))
89+ assert .Equal (3 , len (spell .SpellInformation .Vocation ))
8990 assert .Equal ("Druid" , spell .SpellInformation .Vocation [0 ])
90- assert .Equal ("Sorcerer" , spell .SpellInformation .Vocation [1 ])
91+ assert .Equal ("Monk" , spell .SpellInformation .Vocation [1 ])
92+ assert .Equal ("Sorcerer" , spell .SpellInformation .Vocation [2 ])
9193 assert .False (spell .SpellInformation .GroupAttack )
9294 assert .False (spell .SpellInformation .GroupHealing )
9395 assert .True (spell .SpellInformation .GroupSupport )
@@ -107,7 +109,7 @@ func TestHeavyMagicMissileRune(t *testing.T) {
107109 assert .True (spell .HasRuneInformation )
108110 assert .Equal (4 , len (spell .RuneInformation .Vocation ))
109111 assert .Equal ("Druid" , spell .RuneInformation .Vocation [0 ])
110- assert .Equal ("Knight " , spell .RuneInformation .Vocation [1 ])
112+ assert .Equal ("Monk " , spell .RuneInformation .Vocation [1 ])
111113 assert .Equal ("Paladin" , spell .RuneInformation .Vocation [2 ])
112114 assert .Equal ("Sorcerer" , spell .RuneInformation .Vocation [3 ])
113115 assert .True (spell .RuneInformation .GroupAttack )
@@ -230,7 +232,7 @@ func TestCurePoisonRune(t *testing.T) {
230232 assert .True (spell .HasSpellInformation )
231233 assert .NotNil (spell .SpellInformation )
232234 assert .Equal ("adana pox" , spell .SpellInformation .Formula )
233- assert .Equal (1 , len (spell .SpellInformation .Vocation ))
235+ assert .Equal (2 , len (spell .SpellInformation .Vocation ))
234236 assert .False (spell .SpellInformation .GroupAttack )
235237 assert .False (spell .SpellInformation .GroupHealing )
236238 assert .True (spell .SpellInformation .GroupSupport )
0 commit comments