diff --git a/tests/LazyRecord/Schema/SchemaDeclare/ColumnTest.php b/tests/LazyRecord/Schema/SchemaDeclare/ColumnTest.php index 118a9bd99..dbb692dc1 100644 --- a/tests/LazyRecord/Schema/SchemaDeclare/ColumnTest.php +++ b/tests/LazyRecord/Schema/SchemaDeclare/ColumnTest.php @@ -1,20 +1,17 @@ primary() ->integer() ->autoIncrement() ->notNull(); - is('foo',$column->name); - ok($column->primary); - is('integer',$column->type); + $this->assertEquals('foo',$column->name); + $this->assertTrue($column->primary); + $this->assertEquals('int',$column->type); $this->assertFalse($column->null); } }