diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-01-28 14:29:41 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-01-28 14:57:45 +0100 |
commit | 87ec729f3444808f9e43a64d6925d977db7cab6d (patch) | |
tree | 1a8ab31a86e333e77a77a64e98624c15878da027 /tests | |
parent | 9bc08dc3258b333a8fc4dadf093ef6e18bf838c9 (diff) | |
download | nextcloud-server-87ec729f3444808f9e43a64d6925d977db7cab6d.tar.gz nextcloud-server-87ec729f3444808f9e43a64d6925d977db7cab6d.zip |
Do not encode contacts menu mailto links
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Contacts/ContactsMenu/ActionFactoryTest.php | 2 |
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()); } } |