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
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-11-03 18:16:13 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-11-03 18:44:11 +0300
commit0ce28beba11707e394c806775b5765d26dece4d0 (patch)
tree64d97656035db2ae2895f3afc4b43abf307113ec /tests/Integration
parentf93c487a900c1398e51ed6974c4ff822e9850395 (diff)
Remove dead methods from the Mailbox class
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/Integration')
-rw-r--r--tests/Integration/IMAP/AbstractTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/Integration/IMAP/AbstractTest.php b/tests/Integration/IMAP/AbstractTest.php
index 2d28c9702..bbaaddf46 100644
--- a/tests/Integration/IMAP/AbstractTest.php
+++ b/tests/Integration/IMAP/AbstractTest.php
@@ -105,9 +105,8 @@ abstract class AbstractTest extends TestCase {
* @param string $name
*/
public function existsMailBox($name) {
- $mb = $this->getTestAccount()->getMailbox($name);
try {
- $mb->getStatus();
+ self::$account->getImapConnection()->status($name);
return true;
} catch (Exception $ex) {
return false;