From 001a9c02dd1361dce5808d21dbbb5c7c4f320172 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 2 Jun 2017 11:05:10 +0200 Subject: [PATCH] adjust encryption tests to the new master key default Signed-off-by: Bjoern Schiessle --- apps/encryption/tests/UtilTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/encryption/tests/UtilTest.php b/apps/encryption/tests/UtilTest.php index d2f1d40e16..40fc553725 100644 --- a/apps/encryption/tests/UtilTest.php +++ b/apps/encryption/tests/UtilTest.php @@ -152,7 +152,7 @@ class UtilTest extends TestCase { */ public function testIsMasterKeyEnabled($value, $expect) { $this->configMock->expects($this->once())->method('getAppValue') - ->with('encryption', 'useMasterKey', '0')->willReturn($value); + ->with('encryption', 'useMasterKey', '1')->willReturn($value); $this->assertSame($expect, $this->instance->isMasterKeyEnabled() );