diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-01-28 14:29:41 +0100 |
---|---|---|
committer | Backportbot <backportbot-noreply@rullzer.com> | 2020-01-30 08:46:09 +0000 |
commit | 8aecb95aa4141cec066cf4cdd6e7af4f65ba75d8 (patch) | |
tree | 140c18d13e19eb11263ecd9f31637468b83b4afa /tests | |
parent | 560f3a55f0d7e3d948ccbf8d985155f75a350c34 (diff) | |
download | nextcloud-server-8aecb95aa4141cec066cf4cdd6e7af4f65ba75d8.tar.gz nextcloud-server-8aecb95aa4141cec066cf4cdd6e7af4f65ba75d8.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()); } } |