@@ -115,7 +115,7 @@ public function test_register_invalid_uppercase_characters_in_name() {
115115 */
116116 public function test_register_invalid_name_using_instance () {
117117 $ ability = new WP_Ability ( 'invalid_name ' , array () );
118- $ result = $ this ->registry ->register ( $ ability );
118+ $ result = $ this ->registry ->register ( $ ability );
119119 $ this ->assertNull ( $ result );
120120 }
121121
@@ -314,7 +314,7 @@ public function test_register_new_ability() {
314314 */
315315 public function test_register_new_ability_using_instance () {
316316 $ ability = new WP_Ability ( self ::$ test_ability_name , self ::$ test_ability_properties );
317- $ result = $ this ->registry ->register ( $ ability );
317+ $ result = $ this ->registry ->register ( $ ability );
318318
319319 $ this ->assertSame ( $ ability , $ result );
320320 }
@@ -407,13 +407,13 @@ public function test_unregister_for_known_ability() {
407407 * @covers WP_Abilities_Registry::get_all_registered
408408 */
409409 public function test_get_all_registered () {
410- $ ability_one_name = 'test/one ' ;
410+ $ ability_one_name = 'test/one ' ;
411411 $ this ->registry ->register ( $ ability_one_name , self ::$ test_ability_properties );
412412
413- $ ability_two_name = 'test/two ' ;
413+ $ ability_two_name = 'test/two ' ;
414414 $ this ->registry ->register ( $ ability_two_name , self ::$ test_ability_properties );
415415
416- $ ability_three_name = 'test/three ' ;
416+ $ ability_three_name = 'test/three ' ;
417417 $ this ->registry ->register ( $ ability_three_name , self ::$ test_ability_properties );
418418
419419 $ result = $ this ->registry ->get_all_registered ();
0 commit comments