Commit c4e48658 authored by 龚小红's avatar 龚小红

修复抽奖转盘的抽奖码数量的接口判断逻辑

parent d39235ba
......@@ -659,7 +659,7 @@ public class GameLottery implements Authorization {
Assert.assertNotNull(data,network.message(params, LOTTERRY_getDrawRecord,"返回数据为空",response.body().asString()));
int size = response.jsonPath().getInt("data.list.size()");
Assert.assertTrue(size==1,network.message(params, LOTTERRY_getDrawRecord,"中奖奖品名称错误",response.body().asString()));
Assert.assertTrue(size==2,network.message(params, LOTTERRY_getDrawRecord,"中奖奖品名称错误",response.body().asString()));
}
@Test(description="代理人_获取概率中奖抽奖活动的中奖人列表(未领奖)",priority = 26)
......
......@@ -886,7 +886,7 @@ public class Lottery implements Authorization {
@Test(description = "访客H抽奖码数量", priority = 79)
public void 访客H抽奖码数量() {
visitorAuth9();
codeCount(5);
codeCount(7);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment