Skip to content

Commit 766882b

Browse files
committed
- Supressing error message for SKIPIF check works as expected
1 parent 1e2ad13 commit 766882b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/imap/tests/skipif.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $password = 'p4ssw0rd';
88
$options = OP_HALFOPEN; // this should be enough to verify server present
99
$retries = 0; // dont retry connect on failure
1010

11-
$mbox = imap_open($mailbox, $username, $password, $options, $retries);
11+
$mbox = @imap_open($mailbox, $username, $password, $options, $retries);
1212
if (!$mbox) {
1313
die("skip could not connect to mailbox $mailbox");
1414
}

0 commit comments

Comments
 (0)