Commit 6ceddc91 by xyy

Merge remote-tracking branch 'origin/master'

parents e7f6cb82 a1cb1e67
......@@ -222,7 +222,7 @@ public class TestAddToQueue extends BaseTestImpl {
memberInfo.set(2,reserveId); //将原来的id替换成新的id
try {
Thread.sleep(1000);
Thread.sleep(5000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
......
......@@ -60,7 +60,7 @@ public class TagTools extends XMBaseTest {
deleteTag.put("brandId",xmAppApi.getLoginInfo().getBrandId());
deleteTag.put("studioId",xmAppApi.getLoginInfo().getStudioId());
deleteTag.put("id",id);
deleteTag.put("confirm","");
deleteTag.put("confirm",null);
dataApi.doRequest(RequestType.JSON, dataparams, deleteTag.toJSONString(), dataheadrs).assetsSuccess(true);
JSONObject response=dataApi.getBodyInJSON();
......
......@@ -91,6 +91,15 @@ public class TestCreate extends XMBaseTest {
Assert.assertEquals(success,"false","相同标签不能添加,但可添加");
Assert.assertEquals(code,"error/.TAG_NAME_DUPLICATE","同标签名已存在,不可重复");
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
......
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