Skip to content

Commit

Permalink
don't execute test in cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
jsteemann committed Sep 23, 2019
1 parent fcd2ce4 commit 54f7800
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/TransactionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ public function setUp()
*/
public function testDeadlockHandling()
{
if (!$this->isMMFilesEngine) {
$this->markTestSkipped("test is only meaningful with the mmfiles engine");
if (!$this->isMMFilesEngine || isCluster($this->connection)) {
$this->markTestSkipped("test is only meaningful with the mmfiles engine, single server");
return;
}

try {
Expand Down

0 comments on commit 54f7800

Please sign in to comment.