phpcs - Fix error, "CONST keyword must be lowercase; expected const but found CONST"
[civicrm-core.git] / tests / phpunit / CRM / Utils / HttpClientTest.php
index ffa94a1411daa3e36aa88f12e539dd78ac1095f6..613ae41bf749ede3c903621cfa34b791259f84cb 100644 (file)
@@ -1,10 +1,14 @@
 <?php
 require_once 'CiviTest/CiviUnitTestCase.php';
+
+/**
+ * Class CRM_Utils_HttpClientTest
+ */
 class CRM_Utils_HttpClientTest extends CiviUnitTestCase {
 
-  const VALID_HTTP_URL = 'http://civicrm.org/INSTALL.mysql.txt';
-  const VALID_HTTP_REGEX = '/MySQL/';
-  const VALID_HTTPS_URL = 'https://drupal.org/INSTALL.mysql.txt';
+  const VALID_HTTP_URL = 'http://sandbox.civicrm.org/';
+  const VALID_HTTP_REGEX = '/<html/';
+  const VALID_HTTPS_URL = 'https://civicrm.org/INSTALL.mysql.txt';
   const VALID_HTTPS_REGEX = '/MySQL/';
   const SELF_SIGNED_HTTPS_URL = 'https://self-signed.onebitwise.com:4443/';
   const SELF_SIGNED_HTTPS_REGEX = '/self-signed/';