Skip to content

Commit 10e75d9

Browse files
authored
Fix for cache in tests (#438)
1 parent 9ce0117 commit 10e75d9

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

tests/QueryBuilder/QueryBuilderTest.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,4 +180,15 @@ public function testUpsert(
180180

181181
$db->getQueryBuilder()->upsert($table, $insertColumns, $updateColumns, $actualParams);
182182
}
183+
184+
/**
185+
* @dataProvider \Yiisoft\Db\Tests\Provider\QueryBuilderProvider::upsert()
186+
*/
187+
public function testUpsertExecute(
188+
string $table,
189+
array|QueryInterface $insertColumns,
190+
array|bool $updateColumns
191+
): void {
192+
$this->markTestSkipped('Execute check needed only on real db');
193+
}
183194
}

0 commit comments

Comments
 (0)