From ee03637a7ee0e6d99e34c60c9ca01d6b70834cf8 Mon Sep 17 00:00:00 2001 From: Kaspars Dambis Date: Wed, 18 Dec 2024 10:41:39 +0200 Subject: [PATCH] Per linter --- tests/class-two-factor-core.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/class-two-factor-core.php b/tests/class-two-factor-core.php index ad09f2c1..3d88dd40 100644 --- a/tests/class-two-factor-core.php +++ b/tests/class-two-factor-core.php @@ -1587,7 +1587,7 @@ public function test_can_disable_default_providers() { add_filter( 'two_factor_providers', - function( $providers ) { + function ( $providers ) { return array_diff_key( $providers, array( 'Two_Factor_Email' => null ) ); } ); @@ -1616,7 +1616,7 @@ public function test_uninstall_removes_disabled_provider_user_meta() { add_filter( 'two_factor_providers', - function( $providers ) { + function ( $providers ) { return array_diff_key( $providers, array( 'Two_Factor_Totp' => null ) ); } );