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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAnna Larch <anna@nextcloud.com>2021-08-03 18:21:07 +0300
committerAnna Larch <anna@nextcloud.com>2021-08-03 20:31:28 +0300
commit20056865cc8efafc3a9b8f65c9849c5341d7bf79 (patch)
tree5dab98b82f76faf332801a9f046b3c6a06d5fd7e /tests
parent6b5e0b9db3d0338a8e7adffe70d8128fa8e93419 (diff)
Remove port 585
Signed-off-by: Anna Larch <anna@nextcloud.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Service/Autoconfig/ImapConnectivityTesterTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/Service/Autoconfig/ImapConnectivityTesterTest.php b/tests/Unit/Service/Autoconfig/ImapConnectivityTesterTest.php
index 4fbfced34..ac9235158 100644
--- a/tests/Unit/Service/Autoconfig/ImapConnectivityTesterTest.php
+++ b/tests/Unit/Service/Autoconfig/ImapConnectivityTesterTest.php
@@ -66,10 +66,10 @@ class ImapConnectivityTesterTest extends TestCase {
$users = ['user'];
$password = 'mypassword';
$name = 'User';
- $this->connectivityTester->expects($this->exactly(6))
+ $this->connectivityTester->expects($this->exactly(4))
->method('canConnect')
->willReturn(true);
- $this->imapConnector->expects($this->exactly(18))
+ $this->imapConnector->expects($this->exactly(12))
->method('connect')
->with($email, $password, $name, $host, $this->anything(), $this->anything(), $users[0])
->willThrowException(new Horde_Imap_Client_Exception());