From 065e7817c4c69fc9c7cd042112d2143d2f231f4d Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Mon, 14 Jan 2019 07:22:03 +0000 Subject: [PATCH] Customizer: Fix a coding standards issue introduced in [44580]. See #40020. git-svn-id: https://develop.svn.wordpress.org/trunk@44582 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/customize/manager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/tests/customize/manager.php b/tests/phpunit/tests/customize/manager.php index 782f50479f..71d7e0e6e4 100644 --- a/tests/phpunit/tests/customize/manager.php +++ b/tests/phpunit/tests/customize/manager.php @@ -852,8 +852,8 @@ class Tests_WP_Customize_Manager extends WP_UnitTestCase { * @covers WP_Customize_Manager::filter_iframe_security_headers() */ function test_filter_iframe_security_headers() { - $wp_customize = new WP_Customize_Manager(); - $headers = $wp_customize->filter_iframe_security_headers( array() ); + $wp_customize = new WP_Customize_Manager(); + $headers = $wp_customize->filter_iframe_security_headers( array() ); $this->assertArrayHasKey( 'X-Frame-Options', $headers ); $this->assertArrayHasKey( 'Content-Security-Policy', $headers ); $this->assertEquals( 'SAMEORIGIN', $headers['X-Frame-Options'] );