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

Issue #2154961 by Berdir: Password hashing slows down DUBT tests.

parent 8d1f9b8d
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -187,6 +187,11 @@ public function containerBuild(ContainerBuilder $container) {
$definition = $container->getDefinition('path_processor_alias');
$definition->clearTag('path_processor_inbound')->clearTag('path_processor_outbound');
}
if ($container->hasDefinition('password')) {
$container->getDefinition('password')->setArguments(array(1));
}
$request = Request::create('/');
$this->container->set('request', $request);
}
......
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