diff --git a/shenyu-e2e/shenyu-e2e-case/shenyu-e2e-case-http/src/test/java/org/apache/shenyu/e2e/testcase/http/DividePluginCases.java b/shenyu-e2e/shenyu-e2e-case/shenyu-e2e-case-http/src/test/java/org/apache/shenyu/e2e/testcase/http/DividePluginCases.java index 6c2a4bc876fa..25b469bddaf9 100644 --- a/shenyu-e2e/shenyu-e2e-case/shenyu-e2e-case-http/src/test/java/org/apache/shenyu/e2e/testcase/http/DividePluginCases.java +++ b/shenyu-e2e/shenyu-e2e-case/shenyu-e2e-case-http/src/test/java/org/apache/shenyu/e2e/testcase/http/DividePluginCases.java @@ -39,11 +39,10 @@ private ShenYuScenarioSpec testDivideHello() { return ShenYuScenarioSpec.builder() .name("http client hello") .beforeEachSpec(ShenYuBeforeEachSpec.builder() - .checker(exists("/http/shenyu/client/hello")) + .checker(exists("/http/order/findById?id=123")) .build()) .caseSpec(ShenYuCaseSpec.builder() - .addExists("/http/shenyu/client/hello") - .addNotExists("/http/shenyu/client/hello/222/111") + .addExists("/http/order/findById?id=123") .build()) .build(); }