* Modify test file.

This commit is contained in:
xieqiyu
2023-12-07 10:12:47 +08:00
parent ba4bf56644
commit 5eb18e5ee4
9 changed files with 45 additions and 35 deletions
+2 -2
View File
@@ -55,9 +55,9 @@ class chartTest
* @access public
* @return string
*/
public function isClickableTest(int $chartID): string
public function isClickableTest(int $chartID, string $action): string
{
$chart = $this->objectModel->getByID($chartID);
return $this->objectModel->isClickable($chart) ? 'true' : 'false';
return $this->objectModel->isClickable($chart, $action) ? 'true' : 'false';
}
}