Skip to content

Commit

Permalink
Update BlogHelperTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuring authored Mar 4, 2024
1 parent fb9aa33 commit aa735f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/bc-blog/tests/TestCase/View/Helper/BlogHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1007,10 +1007,10 @@ public function testMailFormLink()
*/
public function testRemoveCtrlChars()
{
$string = "\eBaserCMS \t\tHello \v\vWorld\0\f";
$string = "\ebaserCMS \t\tHello \v\vWorld\0\f";
$result = $this->Blog->removeCtrlChars($string);
//戻り値を確認
$this->assertEquals('BaserCMS Hello World', $result);
$this->assertEquals('baserCMS Hello World', $result);
}

/**
Expand Down

0 comments on commit aa735f6

Please sign in to comment.