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 authored and JDGrimes committed Oct 7, 2016
1 parent e6d44ac commit c8bb3bc
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 c8bb3bc

Please sign in to comment.