Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / user / src / Tests / Views / UserChangedTest.php
diff --git a/web/core/modules/user/src/Tests/Views/UserChangedTest.php b/web/core/modules/user/src/Tests/Views/UserChangedTest.php
deleted file mode 100644 (file)
index ddd7903..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-
-namespace Drupal\user\Tests\Views;
-
-use Drupal\views\Tests\ViewTestBase;
-use Drupal\views\Tests\ViewTestData;
-
-/**
- * Tests the changed field.
- *
- * @group user
- */
-class UserChangedTest extends ViewTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  public static $modules = ['views_ui', 'user_test_views'];
-
-  /**
-   * Views used by this test.
-   *
-   * @var array
-   */
-  public static $testViews = ['test_user_changed'];
-
-  protected function setUp() {
-    parent::setUp();
-
-    ViewTestData::createTestViews(get_class($this), ['user_test_views']);
-
-    $this->enableViewsTestModule();
-  }
-
-  /**
-   * Tests changed field.
-   */
-  public function testChangedField() {
-    $path = 'test_user_changed';
-
-    $options = [];
-
-    $this->drupalGet($path, $options);
-
-    $this->assertText(t('Updated date') . ': ' . date('Y-m-d', REQUEST_TIME));
-  }
-
-}