Skip to content

Commit

Permalink
Fix SqliteTableParserTest
Browse files Browse the repository at this point in the history
  • Loading branch information
c9s committed Apr 16, 2015
1 parent 508935a commit 7aeea07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/LazyRecord/TableParser/SqliteTableParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function testSQLiteTableParser()
$id = $schema->getColumn('id');
$this->assertNotNull($id);
$this->assertTrue($id->autoIncrement);
$this->assertEquals('integer',$id->type);
$this->assertEquals('INTEGER',$id->type);
$this->assertEquals('int',$id->isa);
$this->assertTrue($id->primary);
}
Expand Down

0 comments on commit 7aeea07

Please sign in to comment.