From 09ac5971f5058e7a6aefa98f0be1801e28d31343 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Sun, 25 Jan 2009 23:26:45 +0000 Subject: [PATCH] MFH use example.com --- ext/standard/tests/mail/ezmlm_hash_error.phpt | 4 ++-- ext/standard/tests/mail/mail_include.inc | 4 ++-- ext/standard/tests/mail/mail_skipif.inc | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ext/standard/tests/mail/ezmlm_hash_error.phpt b/ext/standard/tests/mail/ezmlm_hash_error.phpt index 6670ff7ee4..c5f49dd73a 100644 --- a/ext/standard/tests/mail/ezmlm_hash_error.phpt +++ b/ext/standard/tests/mail/ezmlm_hash_error.phpt @@ -14,7 +14,7 @@ var_dump( ezmlm_hash() ); echo "\n-- Testing ezmlm_hash() function with more than expected no. of arguments --\n"; $extra_arg = 10; -var_dump( ezmlm_hash("webmaster@something.com", $extra_arg) ); +var_dump( ezmlm_hash("webmaster@example.com", $extra_arg) ); echo "\n-- Testing ezmlm_hash() function with invalid input - ARRAY --\n"; $array_arg = array(1,2,3,4); @@ -63,4 +63,4 @@ NULL Warning: ezmlm_hash() expects parameter 1 to be string, resource given in %s on line %d NULL -===DONE=== \ No newline at end of file +===DONE=== diff --git a/ext/standard/tests/mail/mail_include.inc b/ext/standard/tests/mail/mail_include.inc index a93187871d..a0ff5e0c17 100644 --- a/ext/standard/tests/mail/mail_include.inc +++ b/ext/standard/tests/mail/mail_include.inc @@ -2,7 +2,7 @@ // Change these to make tests run successfully $server = '{localhost}'; $default_mailbox = $server . "INBOX"; -$domain = "something.com"; +$domain = "example.com"; $admin_user = "webmaster"; // a user with admin access $username = "$admin_user@$domain"; $password = 'p4ssw0rd'; @@ -147,4 +147,4 @@ function get_mailbox_name($mailbox){ return $match[1]; } -?> \ No newline at end of file +?> diff --git a/ext/standard/tests/mail/mail_skipif.inc b/ext/standard/tests/mail/mail_skipif.inc index d01fcd986f..2f4fbf3d6f 100644 --- a/ext/standard/tests/mail/mail_skipif.inc +++ b/ext/standard/tests/mail/mail_skipif.inc @@ -3,7 +3,7 @@ extension_loaded('imap') or die('skip imap extension not available in this build // Change these to make tests run successfully $mailbox = '{localhost}'; -$username = 'webmaster@something.com'; +$username = 'webmaster@example.com'; $password = 'p4ssw0rd'; $options = OP_HALFOPEN; // this should be enough to verify server present $retries = 0; // dont retry connect on failure @@ -13,4 +13,4 @@ if (!$mbox) { die("skip could not connect to mailbox $mailbox"); } imap_close($mbox); -?> \ No newline at end of file +?> -- 2.40.0