Changeset 4292

Show
Ignore:
Timestamp:
04/25/08 16:11:00 (15 months ago)
Author:
jwage
Message:

Fixed test so it fails

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/tests/Ticket/950TestCase.php

    r4291 r4292  
    8080                                              'autoincrement' => true)); 
    8181 
    82                 $this->hasColumn('iso', 'string', 2, array('notnull' => true)); // <-------------------------- 
     82                $this->hasColumn('iso', 'string', 2, array('notnull' => true)); 
    8383 
    8484                $this->hasColumn('name', 'string', 80); 
     
    8686                $this->hasColumn('iso3', 'string', 3); 
    8787                $this->hasColumn('numcode', 'integer', 10); 
    88                 $this->index('iso', array('fields' => 'iso')); // <- need this else I get the error. 
    8988        } 
    9089}