Author: jwage
Date: 2008-08-29 21:15:43 +0100 (Fri, 29 Aug 2008)
New Revision: 4860

Modified:
   branches/1.0/tests/Ticket/1390TestCase.php
Log:
Switching order for #1390


Modified: branches/1.0/tests/Ticket/1390TestCase.php
===================================================================
--- branches/1.0/tests/Ticket/1390TestCase.php  2008-08-29 19:51:14 UTC (rev 
4859)
+++ branches/1.0/tests/Ticket/1390TestCase.php  2008-08-29 20:15:43 UTC (rev 
4860)
@@ -34,9 +34,9 @@
 {
     public function testTest()
     {
-        $record1 = Doctrine::getTable('User')->find(4);
         $user = new User();
-        $record2 = $user->getTable()->find(4);
+        $record1 = $user->getTable()->find(4);
+        $record2 = Doctrine::getTable('User')->find(4);
         $this->assertEqual($record1, $record2);
     }
 }
\ No newline at end of file


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"doctrine-svn" group.
 To post to this group, send email to [email protected]
 To unsubscribe from this group, send email to [EMAIL PROTECTED]
 For more options, visit this group at 
http://groups.google.co.uk/group/doctrine-svn?hl=en-GB
-~----------~----~----~----~------~----~------~--~---

Reply via email to