We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b709c5d commit 8dcc3c3Copy full SHA for 8dcc3c3
dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/Adapter/TransactionInterfaceTest.php
@@ -26,7 +26,7 @@ public function testBeginTransparentTransaction($class)
26
$connectionMock->expects($this->once())->method('beginTransaction')->will($this->returnValue($uniqid));
27
$this->assertSame(0, $connectionMock->getTransactionLevel());
28
$this->assertEquals($uniqid, $connectionMock->beginTransparentTransaction());
29
- $this->assertSame(-1, $connectionMock->getTransactionLevel());
+ $this->assertSame(0, $connectionMock->getTransactionLevel());
30
}
31
32
/**
0 commit comments