Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / web / core / modules / simpletest / tests / src / Functional / OtherInstallationProfileTestsTest.php
index 09ec7b4dbc8c0583bcd70ebbcb96e221098c3370..972495f575962b1ac41c22aeb600c7503d82b5d7 100644 (file)
@@ -8,7 +8,7 @@ use Drupal\Tests\BrowserTestBase;
  * Verifies that tests in other installation profiles are found.
  *
  * @group simpletest
- * @see SimpleTestInstallationProfileModuleTestsTestCase
+ * @see \Drupal\simpletest\Tests\InstallationProfileModuleTestsTest
  */
 class OtherInstallationProfileTestsTest extends BrowserTestBase {
 
@@ -28,8 +28,10 @@ class OtherInstallationProfileTestsTest extends BrowserTestBase {
    * The Standard profile contains \Drupal\standard\Tests\StandardTest, which
    * should be found.
    *
+   * @var string
+   *
    * @see \Drupal\simpletest\Tests\InstallationProfileModuleTestsTest
-   * @see \Drupal\drupal_system_listing_compatible_test\Tests\SystemListingCompatibleTest
+   * @see \Drupal\Tests\drupal_system_listing_compatible_test\Kernel\SystemListingCrossProfileCompatibleTest
    */
   protected $profile = 'minimal';
 
@@ -58,7 +60,7 @@ class OtherInstallationProfileTestsTest extends BrowserTestBase {
 
     // Assert the existence of a test for a module in a different installation
     // profile than the current.
-    $this->assertText('Drupal\drupal_system_listing_compatible_test\Tests\SystemListingCompatibleTest');
+    $this->assertText('Drupal\Tests\drupal_system_listing_compatible_test\Kernel\SystemListingCrossProfileCompatibleTest');
   }
 
 }