Skip to content

Commit

Permalink
Remove extra right paren from unit test
Browse files Browse the repository at this point in the history
Introduced with #524
  • Loading branch information
westonruter committed Feb 5, 2016
1 parent 2a44d8c commit a996a0a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions WordPress/Tests/VIP/SlowDBQueryUnitTest.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ new WP_Query( array(
array(
'key' => 'foo',
'value' => 'bar',
),
),
),
'tax_query' => array(
array(
'taxonomy' => 'foo',
),
),
),
'meta_key' => 'foo',
'meta_value' => 'bar',
) );
) );

$query = 'foo=bar&meta_key=foo&meta_value=bar';

Expand All @@ -34,7 +34,6 @@ $test = array(
'tax_query' => array( // WPCS: tax_query ok.
array(
'taxonomy' => 'foo',
),
),
),
);

0 comments on commit a996a0a

Please sign in to comment.