Skip to content
Snippets Groups Projects
Verified Commit d0fecb79 authored by Dave Long's avatar Dave Long
Browse files

Issue #3417816 by Watergate: Ensure database connection information is cleaned...

Issue #3417816 by Watergate: Ensure database connection information is cleaned up properly after performing ConnectionTest
parent acdd40a5
No related branches found
No related tags found
No related merge requests found
......@@ -982,4 +982,15 @@ public function testDeprecatedFetchModes(int $mode): void {
$statement->setFetchMode($mode);
}
/**
* {@inheritdoc}
*/
public function tearDown(): void {
parent::tearDown();
// Removes the default connection added by the
// testFindCallerFromDebugBacktrace test.
Database::removeConnection('default');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment