From 1264df85b3b1c7ec4727576a9aca4ef1c5e275dc Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 9 Jan 2019 12:36:43 +0000 Subject: [PATCH] Build/Test Tools: Fix coding standards issues after [44515] and [44514]. See #44494, #43743. git-svn-id: https://develop.svn.wordpress.org/trunk@44516 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/edit-tags.php | 6 +++--- tests/phpunit/tests/l10n.php | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/wp-admin/edit-tags.php b/src/wp-admin/edit-tags.php index 998c06e3c3..80af12c435 100644 --- a/src/wp-admin/edit-tags.php +++ b/src/wp-admin/edit-tags.php @@ -358,13 +358,13 @@ endif; $can_edit_terms = current_user_can( $tax->cap->edit_terms ); if ( $can_edit_terms ) { -?> + ?>
- + ?>
diff --git a/tests/phpunit/tests/l10n.php b/tests/phpunit/tests/l10n.php index 930108228a..45a6008363 100644 --- a/tests/phpunit/tests/l10n.php +++ b/tests/phpunit/tests/l10n.php @@ -129,13 +129,13 @@ class Tests_L10n extends WP_UnitTestCase { */ function test_wp_dropdown_languages_exclude_en_us() { $args = array( - 'id' => 'foo', - 'name' => 'bar', - 'languages' => array( 'de_DE' ), - 'translations' => $this->wp_dropdown_languages_filter(), - 'selected' => 'de_DE', - 'echo' => false, - 'show_option_en_us' => false, + 'id' => 'foo', + 'name' => 'bar', + 'languages' => array( 'de_DE' ), + 'translations' => $this->wp_dropdown_languages_filter(), + 'selected' => 'de_DE', + 'echo' => false, + 'show_option_en_us' => false, ); $actual = wp_dropdown_languages( $args );