Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-01-30 11:45:13 +0300
committerGitHub <noreply@github.com>2020-01-30 11:45:13 +0300
commit9ed106f69acaf419414dccfcfd7efa6de22aa45a (patch)
tree9eb2182471dabf1853df1eb315bca133cbcff2b4 /tests
parent792c32aaa431b0037a2b77feec01554fb913d15b (diff)
parent87ec729f3444808f9e43a64d6925d977db7cab6d (diff)
Merge pull request #19176 from nextcloud/fix/contacts-menu-mailt-encoding
Do not encode contacts menu mailto links
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Contacts/ContactsMenu/ActionFactoryTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Contacts/ContactsMenu/ActionFactoryTest.php b/tests/lib/Contacts/ContactsMenu/ActionFactoryTest.php
index 54106bbb642..8e7f64ff9d1 100644
--- a/tests/lib/Contacts/ContactsMenu/ActionFactoryTest.php
+++ b/tests/lib/Contacts/ContactsMenu/ActionFactoryTest.php
@@ -61,7 +61,7 @@ class ActionFactoryTest extends TestCase {
$this->assertInstanceOf(IAction::class, $action);
$this->assertEquals($name, $action->getName());
$this->assertEquals(10, $action->getPriority());
- $this->assertEquals('mailto:user%40example.com', $action->getHref());
+ $this->assertEquals('mailto:user@example.com', $action->getHref());
}
}