diff options
author | Zoe Slattery <zoe@php.net> | 2008-12-05 10:59:08 +0000 |
---|---|---|
committer | Zoe Slattery <zoe@php.net> | 2008-12-05 10:59:08 +0000 |
commit | 2ba01be7ce1f15864586c59e95a700640e3a220c (patch) | |
tree | c64524cbbe9fd8be045c3d1457d098e45944b5fa | |
parent | a6f8a2428e2895d5658d75457e67909348994bc1 (diff) | |
download | php-git-2ba01be7ce1f15864586c59e95a700640e3a220c.tar.gz |
Update to use norsh flag
-rw-r--r-- | ext/imap/tests/imap_include.inc | 4 | ||||
-rw-r--r-- | ext/imap/tests/skipif.inc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/imap/tests/imap_include.inc b/ext/imap/tests/imap_include.inc index a93187871d..3f9845476c 100644 --- a/ext/imap/tests/imap_include.inc +++ b/ext/imap/tests/imap_include.inc @@ -1,6 +1,6 @@ <?php // Change these to make tests run successfully -$server = '{localhost}'; +$server = '{localhost/norsh}'; $default_mailbox = $server . "INBOX"; $domain = "something.com"; $admin_user = "webmaster"; // a user with admin access @@ -147,4 +147,4 @@ function get_mailbox_name($mailbox){ return $match[1]; } -?>
\ No newline at end of file +?> diff --git a/ext/imap/tests/skipif.inc b/ext/imap/tests/skipif.inc index d01fcd986f..dcfc3c1727 100644 --- a/ext/imap/tests/skipif.inc +++ b/ext/imap/tests/skipif.inc @@ -2,7 +2,7 @@ extension_loaded('imap') or die('skip imap extension not available in this build'); // Change these to make tests run successfully -$mailbox = '{localhost}'; +$mailbox = '{localhost/norsh}'; $username = 'webmaster@something.com'; $password = 'p4ssw0rd'; $options = OP_HALFOPEN; // this should be enough to verify server present @@ -13,4 +13,4 @@ if (!$mbox) { die("skip could not connect to mailbox $mailbox"); } imap_close($mbox); -?>
\ No newline at end of file +?> |