Changeset 43571 for trunk/tests/phpunit/tests/query/results.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/query/results.php
r42343 r43571 528 528 'child-one', 529 529 'child-two', 530 ), wp_list_pluck( $posts, 'post_title' ) 530 ), 531 wp_list_pluck( $posts, 'post_title' ) 531 532 ); 532 533 … … 544 545 'child-three', 545 546 'child-four', 546 ), wp_list_pluck( $posts, 'post_title' ) 547 ), 548 wp_list_pluck( $posts, 'post_title' ) 547 549 ); 548 550 … … 562 564 'child-three', 563 565 'child-four', 564 ), wp_list_pluck( $posts, 'post_title' ) 566 ), 567 wp_list_pluck( $posts, 'post_title' ) 565 568 ); 566 569 … … 593 596 'child-one', 594 597 'child-two', 595 ), wp_list_pluck( $posts, 'post_title' ) 598 ), 599 wp_list_pluck( $posts, 'post_title' ) 596 600 ); 597 601 } … … 1064 1068 $result4 = $this->q->query( 1065 1069 array_merge( 1066 $args, array( 1070 $args, 1071 array( 1067 1072 'has_password' => true, 1068 1073 'post_password' => '', … … 1073 1078 $result5 = $this->q->query( 1074 1079 array_merge( 1075 $args, array( 1080 $args, 1081 array( 1076 1082 'has_password' => false, 1077 1083 'post_password' => '', … … 1082 1088 $result6 = $this->q->query( 1083 1089 array_merge( 1084 $args, array( 1090 $args, 1091 array( 1085 1092 'has_password' => null, 1086 1093 'post_password' => '', … … 1092 1099 $result7 = $this->q->query( 1093 1100 array_merge( 1094 $args, array( 1101 $args, 1102 array( 1095 1103 'has_password' => true, 1096 1104 'post_password' => 'burrito', … … 1101 1109 $result8 = $this->q->query( 1102 1110 array_merge( 1103 $args, array( 1111 $args, 1112 array( 1104 1113 'has_password' => false, 1105 1114 'post_password' => 'burrito', … … 1110 1119 $result9 = $this->q->query( 1111 1120 array_merge( 1112 $args, array( 1121 $args, 1122 array( 1113 1123 'has_password' => null, 1114 1124 'post_password' => 'burrito',
Note: See TracChangeset
for help on using the changeset viewer.