Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
20 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 committed Nov 6, 2017
commit ad4e19436dc6eb4df8168f85feb3d1aa92062f37
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