From a283d8c32773a677dac149709ebf1b32c77072b1 Mon Sep 17 00:00:00 2001 From: luying Date: Tue, 7 Jun 2022 13:33:47 +0800 Subject: [PATCH] =?UTF-8?q?jenkins=EF=BC=9A=E6=8B=8D=E5=8D=96=E8=A1=8Coffe?= =?UTF-8?q?r=E6=8E=A5=E5=8F=A3=E6=B7=BB=E5=8A=A0=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/test/auction.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game-server/test/auction.test.ts b/game-server/test/auction.test.ts index 3962820ca..7babd8846 100644 --- a/game-server/test/auction.test.ts +++ b/game-server/test/auction.test.ts @@ -129,7 +129,7 @@ describe('拍卖行测试', function () { done(); return; } - pinusClient.request('guild.auctionHandler.offer', { code: unsoldLots[0].code, max: false, magicWord: DEBUG_MAGIC_WORD }, (res) => { + pinusClient.request('guild.auctionHandler.offer', { code: unsoldLots[0].code, auctionStage: AUCTION_STAGE.GUILD, max: false, magicWord: DEBUG_MAGIC_WORD }, (res) => { checkSuccessResponse(res); checkLot(res.data.lot); if (res.data.dividend) { @@ -144,7 +144,7 @@ describe('拍卖行测试', function () { return; } gid = unsoldLots[0].gid; - pinusClient.request('guild.auctionHandler.offer', { code: unsoldLots[0].code, max: true, magicWord: DEBUG_MAGIC_WORD }, (res) => { + pinusClient.request('guild.auctionHandler.offer', { code: unsoldLots[0].code, auctionStage: AUCTION_STAGE.GUILD, max: true, magicWord: DEBUG_MAGIC_WORD }, (res) => { checkSuccessResponse(res); checkLot(res.data.lot); if(res.data.dividend) {