diff --git a/game-server/test/CheckPatten.ts b/game-server/test/CheckPatten.ts index 5878f8e6b..43903c8d4 100644 --- a/game-server/test/CheckPatten.ts +++ b/game-server/test/CheckPatten.ts @@ -172,7 +172,6 @@ function checkRoleHero(heros) { expect(heros).to.be.an('array'); heros.forEach(hero => { expect(hero.hid).to.be.a('number'); - expect(hero.hName).to.be.a('string'); expect(hero.seqId).to.be.a('number'); expect(hero.exp).to.be.a('number'); expect(hero.lv).to.be.a('number'); @@ -207,7 +206,6 @@ function checkRoleHero(heros) { hero.ePlace.forEach(eplace => { expect(eplace.id).to.be.a('number'); expect(eplace.lv).to.be.a('number'); - expect(eplace.refineLv).to.be.a('number'); }); }) }