From a996a0a4349ceaa4a66fd69f3f40110dd040af7f Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Fri, 5 Feb 2016 11:30:03 -0800 Subject: [PATCH] Remove extra right paren from unit test Introduced with #524 --- WordPress/Tests/VIP/SlowDBQueryUnitTest.inc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/WordPress/Tests/VIP/SlowDBQueryUnitTest.inc b/WordPress/Tests/VIP/SlowDBQueryUnitTest.inc index dda39302cc..cf40bacb62 100644 --- a/WordPress/Tests/VIP/SlowDBQueryUnitTest.inc +++ b/WordPress/Tests/VIP/SlowDBQueryUnitTest.inc @@ -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'; @@ -34,7 +34,6 @@ $test = array( 'tax_query' => array( // WPCS: tax_query ok. array( 'taxonomy' => 'foo', - ), ), ), );