Show
Ignore:
Timestamp:
05/01/08 10:41:47 (8 months ago)
Author:
romanb
Message:

Merged all identity maps into one in the unitofwork. identity map now properly works with hierarchies.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests_old/Ticket/583TestCase.php

    r3882 r4328  
    3030 
    3131        // load our user and our collection of pages 
    32         $user = Doctrine_Query::create()->select('id')->from('Entity')->fetchOne(); 
     32        $user = Doctrine_Query::create()->select('id')->from('Entity')->fetchOne();        
    3333        $this->assertEqual($user->name, 'myname'); 
    3434 
     
    3636        $user = Doctrine_Query::create()->select('*')->from('Entity')->fetchOne(); 
    3737        $this->assertEqual($user->name, 'myname'); 
     38         
    3839    } 
    3940}