* Modify unit test of bugModel::getPlanBugs.

This commit is contained in:
liumengyi
2023-08-21 15:50:50 +08:00
parent a552e6b6cb
commit 2a049730c7
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -169,7 +169,7 @@ class bugTest
$title .= ',' . $bug->title;
}
$title = trim($title, ',');
$title = str_replace("'", '', $title);
$title = str_replace(array("'", '@', '$', '%', ';'), '', $title);
if(dao::isError())
{