From 41dc7c7365bb7fb601adb21f6101cb484feedc21 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Sat, 27 Jul 2019 14:29:28 +0000 Subject: [PATCH] I18N: Following [45688], remove test for removed method. See #44865. git-svn-id: https://develop.svn.wordpress.org/trunk@45689 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/locale.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/phpunit/tests/locale.php b/tests/phpunit/tests/locale.php index 4788d57d90..9790ca14bf 100644 --- a/tests/phpunit/tests/locale.php +++ b/tests/phpunit/tests/locale.php @@ -15,11 +15,6 @@ class Tests_Locale extends WP_UnitTestCase { $this->locale = new WP_Locale(); } - public function test_rtl_src_admin_notice() { - $this->expectOutputRegex( '#

.*

#' ); - $this->locale->rtl_src_admin_notice(); - } - public function test_get_weekday() { $this->assertEquals( __( 'Sunday' ), $this->locale->get_weekday( 0 ) ); $this->assertEquals( __( 'Monday' ), $this->locale->get_weekday( 1 ) );