* Correct parameter of e() for ztf.

This commit is contained in:
dingguodong
2023-05-09 20:52:07 +08:00
parent ff487d19f3
commit a9445e9414
+4 -4
View File
@@ -56,7 +56,7 @@ $todoTask->type = 'task';
$todoTask->name = 'TASK待办';
$todoTask->objectID = 1;
r($tester->todo->insert($todo)) && p() && e(2); // 正常插入待办数据
r($tester->todo->insert($todoTask)) && p() && e(3); // 正常插入task类型待办数据
r($tester->todo->insert($todoNoName)) && p() && e(0); // 插入没有名称的待办数据
r($tester->todo->insert($todoBug)) && p() && e(0); // 插入bug类型待办,没有bugID的情况
r($tester->todo->insert($todo)) && p() && e('2'); // 正常插入待办数据
r($tester->todo->insert($todoTask)) && p() && e('3'); // 正常插入task类型待办数据
r($tester->todo->insert($todoNoName)) && p() && e('0'); // 插入没有名称的待办数据
r($tester->todo->insert($todoBug)) && p() && e('0'); // 插入bug类型待办,没有bugID的情况