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'));