Skip to content

Commit

Permalink
[GENERIC] Resources:
Browse files Browse the repository at this point in the history
- fixed the testbed to throw out ALL problems instead of only the first one

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22360 44c647ce-9c0f-0410-b52a-842ac1e357ba
  • Loading branch information
thomas committed Jun 3, 2010
1 parent 97812e4 commit 5c2843b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/resources/languages/Zend_ValidateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ public function testAllTranslated()
{
$errors = array();
$cnt = 0;
foreach ($this->_translations['en'] as $key => $value) {
foreach ($this->_translations as $lang => $translation) {
foreach ($this->_translations as $lang => $translation) {
foreach ($this->_translations['en'] as $key => $value) {
if ($lang == 'en') {
continue;
}
Expand Down

0 comments on commit 5c2843b

Please sign in to comment.