Changeset 5093

Show
Ignore:
Timestamp:
10/15/08 21:10:34 (9 months ago)
Author:
jwage
Message:

[1.0, 1.1] addresses #1341 fixed test so it fails

Location:
branches
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/tests/Ticket/1341TestCase.php

    r5092 r5093  
    6060              ), 
    6161            )); 
     62        $q = Doctrine_Query::create() 
     63            ->from('Ticket_1341_User u') 
     64            ->leftJoin('u.Profile p'); 
     65        $users = $q->execute(); 
    6266        } catch (Exception $e) { 
    6367            $this->fail($e->getMessage()); 
  • branches/1.1/tests/Ticket/1341TestCase.php

    r5092 r5093  
    6060              ), 
    6161            )); 
     62            $q = Doctrine_Query::create() 
     63                ->from('Ticket_1341_User u') 
     64                ->leftJoin('u.Profile p'); 
     65            $users = $q->execute(); 
    6266        } catch (Exception $e) { 
    6367            $this->fail($e->getMessage());