Mark Scherer 10 年 前
コミット
975c553da9
1 ファイル変更3 行追加3 行削除
  1. 3 3
      tests/TestCase/View/Helper/TimeHelperTest.php

+ 3 - 3
tests/TestCase/View/Helper/TimeHelperTest.php

@@ -39,13 +39,13 @@ class TimeHelperTest extends TestCase {
 		$this->assertTrue($res >= 3 && $res <= 5);
 
 		$res = $this->Time->userAge('2023-01-01');
-		$this->assertSame('---', $res);
+		$this->assertSame('', $res);
 
 		$res = $this->Time->userAge('1903-01-01');
-		$this->assertSame('---', $res);
+		$this->assertSame('', $res);
 
 		$res = $this->Time->userAge('1901-01-01');
-		$this->assertSame('---', $res);
+		$this->assertSame('', $res);
 	}
 
 	/**