Skip to content

Commit

Permalink
Fix wp_query test
Browse files Browse the repository at this point in the history
  • Loading branch information
IanDelMar committed Sep 10, 2024
1 parent 2a81a4d commit d663d20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/data/wp_query.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
$wpQuery = new WP_Query();

assertType('bool', $wpQuery->query_vars_changed);
assertType('string|bool', $wpQuery->$query_vars_hash);
assertType('void', $wpQuery->init_query_flags());
assertType('bool|string', $wpQuery->query_vars_hash);
assertType('null', $wpQuery->init_query_flags());

0 comments on commit d663d20

Please sign in to comment.