Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hafezdivandari committed Oct 31, 2023
1 parent a873896 commit 17a97cf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion tests/Integration/Database/DBAL/TimestampTypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ public function testChangeTimestampColumnToDatetimeColumn()
$this->assertSame(
match ($this->driver) {
'pgsql' => 'timestamp',
'sqlsrv' => 'datetime2',
default => 'datetime',
},
Schema::getColumnType('test', 'timestamp_to_datetime')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function testRenameColumnOnTableWithEnum()
public function testChangeColumnOnTableWithEnum()
{
Schema::table('users', function (Blueprint $table) {
$table->unsignedInteger('age')->charset('')->change();
$table->unsignedInteger('age')->change();
});

$this->assertSame('int', Schema::getColumnType('users', 'age'));
Expand Down

0 comments on commit 17a97cf

Please sign in to comment.