Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent order fields from being removed #2728

Merged
merged 5 commits into from
Apr 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Code alignment
  • Loading branch information
felipeelia committed Apr 27, 2022
commit 52ae2357fc30e8a9ef1679853168276bd24214e9
4 changes: 2 additions & 2 deletions tests/php/features/TestWooCommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ public function testSearchShopOrderByMetaFieldAndId() {
ElasticPress\Elasticsearch::factory()->refresh_indices();

$args = array(
's' => (string) $shop_order_id_1,
'post_type' => 'shop_order',
's' => (string) $shop_order_id_1,
'post_type' => 'shop_order',
'post_status' => 'any',
);

Expand Down