Changeset 4567

Show
Ignore:
Timestamp:
06/27/08 00:29:44 (6 months ago)
Author:
gnat
Message:

Get rid of some forgotten echos
Ticket: 1175

Files:
1 modified

Legend:

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

    r4566 r4567  
    5050        $u = $q->from('gUser u')->leftJoin('u.Images i')->leftJoin('u.Files f')->where('u.id = ?',array(1))->fetchOne(); 
    5151        $this->assertEqual(count($u->Images),2); 
    52         echo $q->getSql()."\n"; 
    53          
    54         $images = Doctrine_Query::create()->from('gImage g')->execute(array(),Doctrine::FETCH_ARRAY); 
    55         print_r($images); 
    5652    } 
    5753}