Changeset 3792

Show
Ignore:
Timestamp:
02/15/08 18:13:28 (17 months ago)
Author:
romanb
Message:

corrected testcase

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.10/tests/Ticket/736TestCase.php

    r3535 r3792  
    2626    public function prepareTables() 
    2727    { 
     28        $this->tables = array(); 
    2829        $this->tables[] = 'T736_Module'; 
    2930        $this->tables[] = 'T736_ModuleDelegate'; 
     31        parent::prepareTables(); 
    3032    } 
    3133 
     
    3537        $module->moduledata->content = "foo"; 
    3638        $module->moduledata->save(); 
    37         $this->assertTrue($module->moduledata->content == "foo"); // should be "foo" is "Lorem Ipsum and so on..." 
     39            $this->assertTrue($module->moduledata->content == "foo"); // should be "foo" is "Lorem Ipsum and so on..." 
     40             
    3841    } 
    3942}