Changeset 3470 for trunk/tests/DataDict

Show
Ignore:
Timestamp:
01/08/08 21:22:37 (12 months ago)
Author:
zYne
Message:

fixes #718

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/DataDict/PgsqlTestCase.php

    r3307 r3470  
    8787        $this->assertEqual($type, array('type' => array('blob', 'clob'), 
    8888                                        'length' => null,  
    89                                         'unsigned' => null,  
     89                                        'unsigned' => null, 
    9090                                        'fixed' => null)); 
    9191    } 
     
    282282        $a = array('type' => 'float', 'length' => 20, 'fixed' => false); 
    283283 
    284         $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'FLOAT8'); 
     284        $this->assertEqual($this->dataDict->getNativeDeclaration($a), 'FLOAT'); 
    285285    } 
    286286    public function testGetNativeDefinitionSupportsBooleanType()