diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-08-15 17:19:50 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-08-15 17:19:50 +0200 |
commit | d6992e3f9f5bdd8d3a6ad5ea47381944a914ac66 (patch) | |
tree | 8d83027949812bb6656b31da5fcea921d3e342b5 /tests/Core | |
parent | 75d135d8d4edda203cd289c705fdc6bb2f9cbec6 (diff) | |
download | nextcloud-server-d6992e3f9f5bdd8d3a6ad5ea47381944a914ac66.tar.gz nextcloud-server-d6992e3f9f5bdd8d3a6ad5ea47381944a914ac66.zip |
Fix template test
Diffstat (limited to 'tests/Core')
-rw-r--r-- | tests/Core/Templates/TemplatesTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Core/Templates/TemplatesTest.php b/tests/Core/Templates/TemplatesTest.php index 03565411a13..cd1502fd22c 100644 --- a/tests/Core/Templates/TemplatesTest.php +++ b/tests/Core/Templates/TemplatesTest.php @@ -13,7 +13,7 @@ class TemplatesTest extends \Test\TestCase { public function test404() { $template = \OC::$SERVERROOT . '/core/templates/404.php'; $href = \OC::$server->getURLGenerator()->linkTo('', 'index.php'); - $expectedHtml = "<ul><li class='error'>\n\t\t\tFile not found<br><p class='hint'>The specified document has not been found on the server.</p>\n<p class='hint'><a href='$href'>You can click here to return to ownCloud.</a></p>\n\t\t</li></ul>"; + $expectedHtml = "<ul><li class='error'>\n\t\t\tFile not found<br><p class='hint'>The specified document has not been found on the server.</p>\n<p class='hint'><a href='$href'>You can click here to return to Nextcloud.</a></p>\n\t\t</li></ul>"; $this->assertTemplate($expectedHtml, $template); } |