修复jenkins

This commit is contained in:
luying
2022-04-07 19:57:59 +08:00
parent e1204b433f
commit 8bed2d58b9

View File

@@ -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');
});
})
}