Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests/admin/wpPluginInstallListTable: rename the original test class #6272

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -3,9 +3,9 @@
/**
* @group admin
*
* @covers WP_Plugin_Install_List_Table
* @covers WP_Plugin_Install_List_Table::get_views
*/
class Tests_Admin_wpPluginInstallListTable extends WP_UnitTestCase {
class Admin_WpPluginInstallListTable_GetViews_Test extends WP_UnitTestCase {
/**
* @var WP_Plugin_Install_List_Table
*/
Expand All @@ -18,8 +18,6 @@ public function set_up() {

/**
* @ticket 42066
*
* @covers WP_Plugin_Install_List_Table::get_views
*/
public function test_get_views_should_return_no_views_by_default() {
$this->assertSame( array(), $this->table->get_views() );
Expand Down