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
Loading
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -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');
  }

}