From 8bed2d58b9bd64b83f9b0ab708fbe2f8987a5849 Mon Sep 17 00:00:00 2001 From: luying Date: Thu, 7 Apr 2022 19:57:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Djenkins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/test/CheckPatten.ts | 2 -- 1 file changed, 2 deletions(-) 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'); }); }) }