Browse Source

add last dot and put anchors to regex

Dariusz Ruminski 8 years ago
parent
commit
e72875f51f
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()
     public function testElementNonExistent()
     {
     {
         $this->expectException(\Cake\View\Exception\MissingElementException::class);
         $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');
         $this->View->element('non_existent_element');
     }
     }
@@ -952,7 +952,7 @@ class ViewTest extends TestCase
     public function testElementInexistentPluginElement()
     public function testElementInexistentPluginElement()
     {
     {
         $this->expectException(\Cake\View\Exception\MissingElementException::class);
         $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');
         $this->View->element('test_plugin.plugin_element');
     }
     }