Skip to content

Commit 80a83b0

Browse files
committed
Syntax error fixed in "ConnectionPaginationTest".
1 parent a55b03f commit 80a83b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/wpunit/ConnectionPaginationTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function testCouponsPagination() {
4646
$coupons,
4747
function( $key_a, $key_b ) {
4848
return $key_a < $key_b;
49-
},
49+
}
5050
);
5151

5252
$query = '
@@ -141,7 +141,7 @@ public function testProductsPagination() {
141141
$products,
142142
function( $key_a, $key_b ) {
143143
return $key_a < $key_b;
144-
},
144+
}
145145
);
146146

147147
$query = '
@@ -234,7 +234,7 @@ public function testOrdersPagination() {
234234
$orders,
235235
function( $key_a, $key_b ) {
236236
return $key_a < $key_b;
237-
},
237+
}
238238
);
239239

240240
$query = '
@@ -330,7 +330,7 @@ public function testRefundsPagination() {
330330
$refunds,
331331
function( $key_a, $key_b ) {
332332
return $key_a < $key_b;
333-
},
333+
}
334334
);
335335

336336
$query = '

0 commit comments

Comments
 (0)