From 41e264fe550dc984c2f99e88dbc9301e3e2eb82c Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 14 Feb 2019 00:41:15 +0000 Subject: [PATCH] Build: Fix formatting issues introduced in [44740]. See #46218. git-svn-id: https://develop.svn.wordpress.org/trunk@44744 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/dependencies/scripts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/dependencies/scripts.php b/tests/phpunit/tests/dependencies/scripts.php index dd6ca40f31..1812919f2a 100644 --- a/tests/phpunit/tests/dependencies/scripts.php +++ b/tests/phpunit/tests/dependencies/scripts.php @@ -1345,7 +1345,7 @@ JS; function test_no_source_mapping() { $all_files = new RecursiveIteratorIterator( new RecursiveDirectoryIterator( dirname( ABSPATH ) . '/build/' ) ); $js_files = new RegexIterator( $all_files, '/\.js$/' ); - foreach( $js_files as $js_file ) { + foreach ( $js_files as $js_file ) { $contents = trim( file_get_contents( $js_file ) ); // We allow data: URLs.