diff --git a/tests/phpunit/test-emitter.php b/tests/phpunit/test-emitter.php index c0301099..ab4b6121 100644 --- a/tests/phpunit/test-emitter.php +++ b/tests/phpunit/test-emitter.php @@ -188,9 +188,11 @@ public function test_year_date_archive_with_posts() { */ public function test_year_date_archive_without_posts() { $this->go_to( home_url( '2015/' ) ); - $this->assertArrayValues( array( - '404', - ), Emitter::get_main_query_surrogate_keys() ); + $this->assertArrayValues( + array( + '404', + ), Emitter::get_main_query_surrogate_keys() + ); } /** @@ -214,9 +216,11 @@ public function test_month_date_archive_with_posts() { */ public function test_month_date_archive_without_posts() { $this->go_to( home_url( '2015/10/' ) ); - $this->assertArrayValues( array( - '404', - ), Emitter::get_main_query_surrogate_keys() ); + $this->assertArrayValues( + array( + '404', + ), Emitter::get_main_query_surrogate_keys() + ); } /** @@ -238,9 +242,11 @@ public function test_day_date_archive_with_posts() { */ public function test_day_date_archive_without_posts() { $this->go_to( home_url( '2015/10/15/' ) ); - $this->assertArrayValues( array( - '404', - ), Emitter::get_main_query_surrogate_keys() ); + $this->assertArrayValues( + array( + '404', + ), Emitter::get_main_query_surrogate_keys() + ); } /**