diff --git a/game-server/test/auction.test.ts b/game-server/test/auction.test.ts index a5bbc0524..fb9e733c0 100644 --- a/game-server/test/auction.test.ts +++ b/game-server/test/auction.test.ts @@ -82,7 +82,7 @@ describe('拍卖行测试', function () { it('添加拍品', function (done) { const sourceCode = Math.random().toString(36).slice(-8); - pinusClient.request('battle.auctionHandler.debugAddLots', { magicWord: DEBUG_MAGIC_WORD, sourceType: AUCTION_SOURCE.GATE, sourceCode, rewards: [{ id: GOOD_ID_TIEJIAN, count: 1 }, { id: GOOD_ID_GANGJIAN, count: 2 }] }, (res) => { + pinusClient.request('battle.auctionHandler.debugAddLots', { magicWord: DEBUG_MAGIC_WORD, sourceType: AUCTION_SOURCE.GATE, sourceCode, poolId: 1 }, (res) => { checkSuccessResponse(res); expect(res.data.lots).to.be.an('array'); for (let lot of res.data.lots) {