Skip to content

Commit

Permalink
Fix for cache in tests (#438)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdef committed Dec 28, 2022
1 parent 9ce0117 commit 10e75d9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/QueryBuilder/QueryBuilderTest.php
Expand Up @@ -180,4 +180,15 @@ public function testUpsert(

$db->getQueryBuilder()->upsert($table, $insertColumns, $updateColumns, $actualParams);
}

/**
* @dataProvider \Yiisoft\Db\Tests\Provider\QueryBuilderProvider::upsert()
*/
public function testUpsertExecute(
string $table,
array|QueryInterface $insertColumns,
array|bool $updateColumns
): void {
$this->markTestSkipped('Execute check needed only on real db');
}
}

0 comments on commit 10e75d9

Please sign in to comment.