修改单元测试

This commit is contained in:
jay li
2025-01-01 09:11:31 +08:00
parent 17bdb8e449
commit 4ec6677bb3

View File

@@ -165,7 +165,7 @@ public class SQLWithXmlELInstanceIdSpringbootTest extends BaseTest {
LiteflowResponse response = flowExecutor.execute2Resp(chainId, "arg"); LiteflowResponse response = flowExecutor.execute2Resp(chainId, "arg");
String executeStepStr = response.getExecuteStepStr(); String executeStepStr = response.getExecuteStepStr();
Assertions.assertEquals("a==>b==>c==>a", response.getExecuteStepStr()); Assertions.assertTrue(response.isSuccess());
String instancePath = constructInstancePath(executeStepStr, chainId); String instancePath = constructInstancePath(executeStepStr, chainId);
Assertions.assertEquals(instancePath, response.getExecuteStepStrWithInstanceId()); Assertions.assertEquals(instancePath, response.getExecuteStepStrWithInstanceId());