Skip to content
Snippets Groups Projects
Commit de2436f1 authored by catch's avatar catch
Browse files

Issue #3497701 by mstrelan, spokje, catch, quietone: [random test failure]...

Issue #3497701 by mstrelan, spokje, catch, quietone: [random test failure] PackageUpdateTest::testPackageUpdate

(cherry picked from commit e11fda57)
parent 33160a9b
No related branches found
No related tags found
9 merge requests!12686Draft: Issue #3535330: Assets paths in CSS no longer rewritten when aggregation is enabled,!12661Issue #3255804 by godotislate, longwave, berdir, alexpott, catch, andypost,...,!12660Issue #3255804 by godotislate, longwave, berdir, alexpott, catch, andypost,...,!12618Issue #3522970 by longwave, smustgrave: Remove unused BrowserTestBase::$originalContainer,!12473Issue #3521639 by mstrelan, smustgrave for 11.2,!12462Issue #3523109 by ghost of drupal past, donquixote, nicxvan, dww, larowlan,...,!12357Issue #3529639 by mradcliffe, smustgrave, solomon.yifru: replacing a depricated css,!8811Issue #3129179: Provide some way to rebuild the persistent bundle field map,!7916Remove taxonomy dependency on node module - 11.x
Pipeline #505075 passed with warnings
Pipeline: drupal

#505078

    ......@@ -92,7 +92,7 @@ public function run(Request $request): RedirectResponse {
    public function finish(string $id): Response {
    $this->stage->claim($id)->postApply();
    $this->stage->destroy();
    return new Response();
    return new Response('Finished');
    }
    /**
    ......
    ......@@ -721,6 +721,9 @@ protected function makePackageManagerTestApiRequest(string $url, array $query_da
    $this->serverErrorLog,
    );
    $this->assertSame(200, $session->getStatusCode(), $message);
    // Sometimes we get a 200 response after a PHP timeout or OOM error, so we
    // also check the page content to ensure it's what we expect.
    $this->assertSame('Finished', $session->getPage()->getText());
    }
    /**
    ......
    ......@@ -333,8 +333,8 @@ public function assertCommandExitCode($expected_code) {
    public function executeCommand($command_line, $working_dir = NULL) {
    $this->commandProcess = Process::fromShellCommandline($command_line);
    $this->commandProcess->setWorkingDirectory($this->getWorkingPath($working_dir))
    ->setTimeout(300)
    ->setIdleTimeout(300);
    ->setTimeout(360)
    ->setIdleTimeout(360);
    $this->commandProcess->run();
    return $this->commandProcess;
    }
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment