From 1e4e66b590a00efeb54e4c83ad8dc6e0a703d3de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E8=BE=B0=E8=BD=A9?= Date: Wed, 9 Nov 2022 14:23:49 +0800 Subject: [PATCH] * Modify function name. --- api/v1/entries/testresults.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/v1/entries/testresults.php b/api/v1/entries/testresults.php index 848f477df6..d6fa1c6b8f 100644 --- a/api/v1/entries/testresults.php +++ b/api/v1/entries/testresults.php @@ -60,7 +60,7 @@ class testresultsEntry extends entry $case = $this->loadModel('testcase')->getByID($caseID); $runID = $this->param('runID', 0); $version = $this->param('version', $case->version); - $steps = $this->getStepKeys($runID, $caseID, $version); + $steps = $this->getStepIDList($runID, $caseID, $version); $this->setPost('case', $caseID); $this->setPost('version', $version); @@ -99,7 +99,7 @@ class testresultsEntry extends entry * @access public * @return array */ - public function getStepKeys($runID, $caseID, $version) + public function getStepIDList($runID, $caseID, $version) { if($runID) {