Commit c05e9e55 authored by 张震's avatar 张震

Boss看板调整优化

parent 8533880f
......@@ -61,7 +61,7 @@ public class Boss {
boolean hasSubordinate = response.jsonPath().getBoolean("data.hasSubordinate");//判断是否有下级
boolean hasSuperior = response.jsonPath().getBoolean("data.hasSuperior");//判断是否有上级
Assert.assertFalse(hasSubordinate, network.message(params,BOSS_ROLE,"暂无下级"));
Assert.assertTrue(hasSuperior,network.message(params,BOSS_ROLE,"暂无上级"));
Assert.assertFalse(hasSuperior,network.message(params,BOSS_ROLE,"暂无上级"));
}
......@@ -131,7 +131,7 @@ public class Boss {
boolean hasSubordinate = response.jsonPath().getBoolean("data.hasSubordinate");//判断是否有下级
boolean hasSuperior = response.jsonPath().getBoolean("data.hasSuperior");//判断是否有上级
Assert.assertTrue(hasSubordinate, network.message(params,BOSS_ROLE,"暂无下级"));
Assert.assertTrue(hasSuperior,network.message(params,BOSS_ROLE,"暂无上级"));
Assert.assertFalse(hasSuperior,network.message(params,BOSS_ROLE,"暂无上级"));
}
......
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