jenkins:拍卖行offer接口添加参数

This commit is contained in:
luying
2022-06-07 13:33:47 +08:00
parent 90e729b686
commit a283d8c327

View File

@@ -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) {