Skip to content

Commit 51cb56c

Browse files
Fix misplaced closing brace in Callback_Url_Change_Test.
1 parent 2ca0a48 commit 51cb56c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/Unit/AI/Authorization/Application/Token_Manager/Callback_Url_Change_Test.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function test_stale_callback_url_triggers_token_re_request() {
113113
Monkey\Functions\when( 'update_option' )->alias(
114114
static function () use ( &$stored_option ) {
115115
$stored_option = \func_get_args();
116-
}
116+
},
117117
);
118118

119119
Monkey\Functions\expect( 'wp_cache_delete' )
@@ -257,7 +257,7 @@ public function test_empty_stored_hash_forces_token_re_request() {
257257
Monkey\Functions\when( 'update_option' )->alias(
258258
static function () use ( &$stored_option ) {
259259
$stored_option = \func_get_args();
260-
}
260+
},
261261
);
262262

263263
Monkey\Functions\expect( 'wp_cache_delete' )
@@ -341,7 +341,7 @@ public function test_token_request_stores_callback_url_hash() {
341341
Monkey\Functions\when( 'update_option' )->alias(
342342
static function () use ( &$stored_option ) {
343343
$stored_option = \func_get_args();
344-
}
344+
},
345345
);
346346

347347
Monkey\Functions\expect( 'wp_cache_delete' )

0 commit comments

Comments
 (0)