From 23c9235728139a5288f24e1f50efe7376539919b Mon Sep 17 00:00:00 2001 From: Dmitriy Gritsenko Date: Sun, 5 Jan 2025 09:20:42 +0500 Subject: [PATCH] Removed redundant PHPDoc block --- tests/Common/CommonSchemaTest.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/tests/Common/CommonSchemaTest.php b/tests/Common/CommonSchemaTest.php index cc311286b..03b877e92 100644 --- a/tests/Common/CommonSchemaTest.php +++ b/tests/Common/CommonSchemaTest.php @@ -405,19 +405,10 @@ public function testGetTableNames(array $pdoAttributes): void $db->close(); } - /** - * @dataProvider \Yiisoft\Db\Tests\Provider\SchemaProvider::pdoAttributes - * - * @throws NotSupportedException - */ - public function testHasTable(array $pdoAttributes): void + public function testHasTable(): void { $db = $this->getConnection(true); - foreach ($pdoAttributes as $name => $value) { - $db->getPDO()?->setAttribute($name, $value); - } - $schema = $db->getSchema(); $this->assertTrue($schema->hasTable('customer'));