diff --git a/lib/Drupal/views/Tests/User/UserTest.php b/lib/Drupal/views/Tests/User/UserTest.php
deleted file mode 100644
index e3a0348bc1842f5995087e0343b6bd5d1904cfca..0000000000000000000000000000000000000000
--- a/lib/Drupal/views/Tests/User/UserTest.php
+++ /dev/null
@@ -1,46 +0,0 @@
-<?php
-
-/**
- * @file
- * Definition of Drupal\views\Tests\User\UserTest.
- */
-
-namespace Drupal\views\Tests\User;
-
-/**
- * Tests basic user module integration into views.
- */
-class UserTest extends UserTestBase {
-
-  /**
-   * Users to use during this test.
-   *
-   * @var array
-   */
-  protected $users = array();
-
-  /**
-   * Nodes to use during this test.
-   *
-   * @var array
-   */
-  protected $nodes = array();
-
-  public static function getInfo() {
-    return array(
-      'name' => 'User: Basic integration',
-      'description' => 'Tests the integration of user.module.',
-      'group' => 'Views Modules',
-    );
-  }
-
-  protected function setUp() {
-    parent::setUp();
-
-    $this->users[] = $this->drupalCreateUser();
-    $this->users[] = user_load(1);
-    $this->nodes[] = $this->drupalCreateNode(array('uid' => $this->users[0]->uid));
-    $this->nodes[] = $this->drupalCreateNode(array('uid' => 1));
-  }
-
-}