diff --git a/core/modules/simpletest/simpletest.install b/core/modules/simpletest/simpletest.install
index e5eb9a3..f5d8eac 100644
--- a/core/modules/simpletest/simpletest.install
+++ b/core/modules/simpletest/simpletest.install
@@ -6,6 +6,7 @@
  */
 
 use Drupal\Component\Utility\Environment;
+use Drupal\Core\Url;
 
 /**
  * Minimum value of PHP memory_limit for SimpleTest.
@@ -27,7 +28,7 @@ function simpletest_requirements($phase) {
   );
   if (!$has_curl) {
     $requirements['curl']['severity'] = REQUIREMENT_ERROR;
-    $requirements['curl']['description'] = t('The testing framework could not be installed because the PHP <a href="http://php.net/manual/curl.setup.php">cURL</a> library is not available.');
+    $requirements['curl']['description'] = t('The <a href="http://php.net/manual/curl.setup.php">PHP cURL library</a> needs to be installed on the server. You can check the cURL status via the <a href="@phpinfo_url">phpinfo() page</a>. For instructions on how install the cURL library, please see <a href="https://www.drupal.org/requirements/php/curl">https://www.drupal.org/requirements/php/curl</a>.', array('@phpinfo_url' => (new Url('system.php'))->toString()));
   }
 
   // SimpleTest currently needs 2 cURL options which are incompatible with
