Skip to content

Commit 791bbf8

Browse files
committed
replace assertEmpty() with stricter assertions
1 parent 14995ae commit 791bbf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Store/DoctrineDbalStoreTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,6 @@ public function testConfigureSchemaTableExists()
300300
$someFunction = fn () => true;
301301
$dbalStore->configureSchema($schema, $someFunction);
302302
$table = $schema->getTable('lock_keys');
303-
$this->assertEmpty($table->getColumns(), 'The table was not overwritten');
303+
$this->assertSame([], $table->getColumns(), 'The table was not overwritten');
304304
}
305305
}

0 commit comments

Comments
 (0)