Skip to content

Commit ed152fd

Browse files
Update WordPressBuilderTest
1 parent 71dc493 commit ed152fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/WordPress/Orm/Schemas/WordPressBuilderTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ public function testDropColumn(): void
120120

121121
$table = $this->database->getTablePrefix() . 'address';
122122
$columns = $this->schema->getColumns($table);
123-
$this->assertCount(5, $columns);
123+
$this->assertCount(6, $columns);
124124

125125
$this->schema->dropColumns('address', ['street_3']);
126126
$columns = $this->schema->getColumns($table);
127-
$this->assertCount(4, $columns);
127+
$this->assertCount(5, $columns);
128128
$this->assertFalse($this->schema->hasColumn($table, 'street_3'));
129129

130130
}

0 commit comments

Comments
 (0)