Browse Source

Do not return void methods.

mscherer 9 years ago
parent
commit
473af0b9d3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/I18n/TimeTest.php

+ 1 - 1
tests/TestCase/I18n/TimeTest.php

@@ -916,6 +916,6 @@ class TimeTest extends TestCase
         $result = str_replace(['گرینویچ'], 'GMT', $result);
         $result = str_replace(['  '], ' ', $result);
 
-        return $this->assertSame($expected, $result, $message);
+        $this->assertSame($expected, $result, $message);
     }
 }