Skip to content
Snippets Groups Projects

Issue #3342120: PHPStan code checks appear to not be running

Files
19
@@ -29,7 +29,7 @@ class PreUpdateTest extends UpdaterFormTestBase {
]
);
// One module not installed through composer.
(new ActiveFixtureManipulator())
(new ActiveFixtureManipulator($this->container->get('package_manager.path_locator')))
->removePackage('drupal/aaa_update_test')
->commitChanges();
$assert = $this->assertSession();
@@ -47,7 +47,7 @@ class PreUpdateTest extends UpdaterFormTestBase {
$this->assertUpdatesCount(1);
// Both of the modules not installed through composer.
(new ActiveFixtureManipulator())
(new ActiveFixtureManipulator($this->container->get('package_manager.path_locator')))
->removePackage('drupal/semver_test')
->commitChanges();
$this->getSession()->reload();
Loading