Skip to content
Snippets Groups Projects
Commit ae5a6ee8 authored by Erick Hitter's avatar Erick Hitter
Browse files

Fix syntax for 5.3

parent 119cc126
Branches
Tags
1 merge request!14Bump WP compatibility
Pipeline #2912 failed
...@@ -41,12 +41,12 @@ class PostFilters extends WP_UnitTestCase { ...@@ -41,12 +41,12 @@ class PostFilters extends WP_UnitTestCase {
parent::setUp(); parent::setUp();
static::$post_id = $this->factory->post->create( static::$post_id = $this->factory->post->create(
[ array(
'post_title' => 'Pagination Test', 'post_title' => 'Pagination Test',
'post_status' => 'publish', 'post_status' => 'publish',
'post_date' => '2019-01-01 00:01:01', 'post_date' => '2019-01-01 00:01:01',
'post_content' => implode( static::$page_break, static::$pages_content ), 'post_content' => implode( static::$page_break, static::$pages_content ),
] )
); );
} }
...@@ -55,9 +55,9 @@ class PostFilters extends WP_UnitTestCase { ...@@ -55,9 +55,9 @@ class PostFilters extends WP_UnitTestCase {
*/ */
public function test_view_page_1(): void { public function test_view_page_1(): void {
query_posts( query_posts(
[ array(
'p' => static::$post_id, 'p' => static::$post_id,
] )
); );
$this->assertTrue( have_posts() ); $this->assertTrue( have_posts() );
...@@ -74,10 +74,10 @@ class PostFilters extends WP_UnitTestCase { ...@@ -74,10 +74,10 @@ class PostFilters extends WP_UnitTestCase {
*/ */
public function test_view_page_2(): void { public function test_view_page_2(): void {
query_posts( query_posts(
[ array(
'p' => static::$post_id, 'p' => static::$post_id,
'page' => 2, 'page' => 2,
] )
); );
$this->assertTrue( have_posts() ); $this->assertTrue( have_posts() );
...@@ -94,10 +94,10 @@ class PostFilters extends WP_UnitTestCase { ...@@ -94,10 +94,10 @@ class PostFilters extends WP_UnitTestCase {
*/ */
public function test_view_page_3(): void { public function test_view_page_3(): void {
query_posts( query_posts(
[ array(
'p' => static::$post_id, 'p' => static::$post_id,
'page' => 3, 'page' => 3,
] )
); );
$this->assertTrue( have_posts() ); $this->assertTrue( have_posts() );
...@@ -114,10 +114,10 @@ class PostFilters extends WP_UnitTestCase { ...@@ -114,10 +114,10 @@ class PostFilters extends WP_UnitTestCase {
*/ */
public function test_view_all(): void { public function test_view_all(): void {
query_posts( query_posts(
[ array(
'p' => static::$post_id, 'p' => static::$post_id,
'view-all' => true, 'view-all' => true,
] )
); );
$this->assertTrue( have_posts() ); $this->assertTrue( have_posts() );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment