Verified Commit fc948a68 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3452630 by SandeepMahlawat, pooja_sharma, joachim, mondrake:...

Issue #3452630 by SandeepMahlawat, pooja_sharma, joachim, mondrake: HtmlOutputLogger outputs surplus newline
parent 9fc1bc9a
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ public static function isEnabled(): bool {
   * Logs a link to a generated HTML page.
   *
   * @param string $logEntry
   *   A link to a generated HTML page.
   *   A link to a generated HTML page, should not contain a trailing newline.
   *
   * @throws \RuntimeException
   */
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ protected function htmlOutput($message = NULL) {
    // Do not use the file_url_generator service as the module_handler service
    // might not be available.
    $uri = $this->htmlOutputBaseUrl . '/sites/simpletest/browser_output/' . $html_output_filename;
    HtmlOutputLogger::log($uri . "\n");
    HtmlOutputLogger::log($uri);
  }

  /**