Skip to content

Commit

Permalink
Do not return void methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Dec 26, 2016
1 parent 3244db9 commit 473af0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/I18n/TimeTest.php
Expand Up @@ -916,6 +916,6 @@ public function assertTimeFormat($expected, $result, $message = "")
$result = str_replace(['گرینویچ'], 'GMT', $result);
$result = str_replace([' '], ' ', $result);

return $this->assertSame($expected, $result, $message);
$this->assertSame($expected, $result, $message);
}
}

0 comments on commit 473af0b

Please sign in to comment.