Skip to content
Snippets Groups Projects
Commit fc681d50 authored by VIGHNESH SADAGOPAL's avatar VIGHNESH SADAGOPAL Committed by Adam G-H
Browse files

Issue #3275075 by VIGHNESH SADAGOPAL, phenaproxima, kunal.sachdev: Change the...

Issue #3275075 by VIGHNESH SADAGOPAL, phenaproxima, kunal.sachdev: Change the name of the variable $vendor in \Drupal\Tests\automatic_updates\Kernel\ReadinessValidation\StagedProjectsValidatorTest::validate
parent ac77eea9
No related branches found
No related tags found
1 merge request!269Changed the variable to virtualfilesystem from vendor
...@@ -50,9 +50,9 @@ class StagedProjectsValidatorTest extends AutomaticUpdatesKernelTestBase { ...@@ -50,9 +50,9 @@ class StagedProjectsValidatorTest extends AutomaticUpdatesKernelTestBase {
// If we are testing a fixture with existing stage directory then we // If we are testing a fixture with existing stage directory then we
// need to use a virtual file system directory, so we can create a // need to use a virtual file system directory, so we can create a
// subdirectory using the stage ID after it is created below. // subdirectory using the stage ID after it is created below.
$vendor = vfsStream::newDirectory('au_stage'); $stage_vfs_dir = vfsStream::newDirectory('au_stage');
$this->vfsRoot->addChild($vendor); $this->vfsRoot->addChild($stage_vfs_dir);
TestStage::$stagingRoot = $vendor->url(); TestStage::$stagingRoot = $stage_vfs_dir->url();
} }
else { else {
// If we are testing non-existent staging directory we can use the path // If we are testing non-existent staging directory we can use the path
...@@ -66,7 +66,7 @@ class StagedProjectsValidatorTest extends AutomaticUpdatesKernelTestBase { ...@@ -66,7 +66,7 @@ class StagedProjectsValidatorTest extends AutomaticUpdatesKernelTestBase {
// Copy the fixture's staging directory into a subdirectory using the // Copy the fixture's staging directory into a subdirectory using the
// stage ID as the directory name. // stage ID as the directory name.
$sub_directory = vfsStream::newDirectory($stage_id); $sub_directory = vfsStream::newDirectory($stage_id);
$vendor->addChild($sub_directory); $stage_vfs_dir->addChild($sub_directory);
(new Filesystem())->mirror($stage_dir, $sub_directory->url()); (new Filesystem())->mirror($stage_dir, $sub_directory->url());
} }
......
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