Dariusz Ruminski 8 years ago
parent
commit
7b4512dc52
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/TestCase/View/ViewTest.php

+ 2 - 2
tests/TestCase/View/ViewTest.php

@@ -939,7 +939,7 @@ class ViewTest extends TestCase
     public function testElementNonExistent()
     {
         $this->expectException(\Cake\View\Exception\MissingElementException::class);
-        $this->expectExceptionMessageRegExp('#^Element file \"Element[\\|/]non_existent_element\.ctp\" is missing\.$#');
+        $this->expectExceptionMessageRegExp('#^Element file "Element[\\\\/]non_existent_element\.ctp" is missing\.$#');
 
         $this->View->element('non_existent_element');
     }
@@ -952,7 +952,7 @@ class ViewTest extends TestCase
     public function testElementInexistentPluginElement()
     {
         $this->expectException(\Cake\View\Exception\MissingElementException::class);
-        $this->expectExceptionMessageRegExp('#^Element file "test_plugin\.Element[\\|/]plugin_element\.ctp\" is missing\.$#');
+        $this->expectExceptionMessageRegExp('#^Element file "test_plugin\.Element[\\\\/]plugin_element\.ctp" is missing\.$#');
 
         $this->View->element('test_plugin.plugin_element');
     }