From 2cc71a6bb1b2a64fc7c15aa5312728c48a53067c Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Fri, 11 Apr 2014 09:54:17 -0400 Subject: [PATCH] Issue #2210631 followup by jhedstrom: Move PhpStorageFactory to the Core namespace. --- .../tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php b/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php index f90fedec63d7..1c356351a122 100644 --- a/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php +++ b/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php @@ -132,7 +132,7 @@ public function testDeleteAll() { $this->assertFalse($php_read->deleteAll()); // Make sure directory exists prior to removal. - $this->assertTrue(file_exists(sys_get_temp_dir() . '/php/simpletest'), 'File storage directory does not exist.'); + $this->assertTrue(file_exists(sys_get_temp_dir() . '/php/test'), 'File storage directory does not exist.'); // Write out some files. $php = new FileStorage($this->standardSettings); -- GitLab