diff options
Diffstat (limited to 'tests/Core')
-rw-r--r-- | tests/Core/Service/LoginFlowV2ServiceUnitTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Core/Service/LoginFlowV2ServiceUnitTest.php b/tests/Core/Service/LoginFlowV2ServiceUnitTest.php index 7ca389946d8..011196bb1ba 100644 --- a/tests/Core/Service/LoginFlowV2ServiceUnitTest.php +++ b/tests/Core/Service/LoginFlowV2ServiceUnitTest.php @@ -392,7 +392,7 @@ class LoginFlowV2ServiceUnitTest extends TestCase { ->method('getSystemValue') ->willReturn($this->returnCallback(function ($key) { // Note: \OCP\IConfig::getSystemValue returns either an array or string. - return 'openssl' == $key ? [] : ''; + return $key == 'openssl' ? [] : ''; })); $this->mapper->expects($this->once()) |