From 4be7a863ff96c0bc59c46798335dbe157529a9c4 Mon Sep 17 00:00:00 2001 From: Felix Arntz Date: Thu, 21 Mar 2019 21:59:12 +0000 Subject: [PATCH] Bootstrap/Load: Fix WPCS violation in a new test following [44973]. See #46130. git-svn-id: https://develop.svn.wordpress.org/trunk@44974 602fd350-edb4-49c9-b593-d223f7449a82 --- .../tests/error-protection/recovery-mode-cookie-service.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/error-protection/recovery-mode-cookie-service.php b/tests/phpunit/tests/error-protection/recovery-mode-cookie-service.php index 203b1f9aee..78f9099758 100644 --- a/tests/phpunit/tests/error-protection/recovery-mode-cookie-service.php +++ b/tests/phpunit/tests/error-protection/recovery-mode-cookie-service.php @@ -50,7 +50,7 @@ class Tests_Recovery_Mode_Cookie_Service extends WP_UnitTestCase { $reflection = new ReflectionMethod( $service, 'generate_cookie' ); $reflection->setAccessible( true ); - $cookie = $reflection->invoke( $service ); + $cookie = $reflection->invoke( $service ); $cookie .= 'gibbersih'; $error = $service->validate_cookie( $cookie );