diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-01-30 09:45:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 09:45:13 +0100 |
commit | 9ed106f69acaf419414dccfcfd7efa6de22aa45a (patch) | |
tree | 9eb2182471dabf1853df1eb315bca133cbcff2b4 /tests | |
parent | 792c32aaa431b0037a2b77feec01554fb913d15b (diff) | |
parent | 87ec729f3444808f9e43a64d6925d977db7cab6d (diff) | |
download | nextcloud-server-9ed106f69acaf419414dccfcfd7efa6de22aa45a.tar.gz nextcloud-server-9ed106f69acaf419414dccfcfd7efa6de22aa45a.zip |
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.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()); } } |