Changeset 4579

Show
Ignore:
Timestamp:
06/28/08 06:21:35 (12 months ago)
Author:
jwage
Message:

Fixing coding standards.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/tests/Ticket/1175TestCase.php

    r4570 r4579  
    6161        $u = $q->fetchOne();  
    6262        $this->assertTrue( is_object($u) ); 
    63         if(is_object($u)) 
     63        if (is_object($u)) { 
    6464            $this->assertEqual(count($u->Images),2); 
    65         else 
     65        } else { 
    6666            $this->fail(); 
     67        } 
    6768    } 
    6869}