Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try oracle tests without throwing exception for stray transactions
  • Loading branch information
tomneedham authored and Vincent Petry committed Nov 7, 2017
commit ed699d28097803cbc78413c72c77260db66528d5
2 changes: 1 addition & 1 deletion tests/lib/testcase.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public static function tearDownAfterClass() {

$connection = \OC::$server->getDatabaseConnection();
if ($connection->inTransaction()) {
throw new \Exception('Stray transaction in test class ' . get_called_class());
//throw new \Exception('Stray transaction in test class ' . get_called_class());
}
$queryBuilder = $connection->getQueryBuilder();

Expand Down