summaryrefslogtreecommitdiffstats
path: root/apps/encryption/tests
diff options
context:
space:
mode:
Diffstat (limited to 'apps/encryption/tests')
-rw-r--r--apps/encryption/tests/KeyManagerTest.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/encryption/tests/KeyManagerTest.php b/apps/encryption/tests/KeyManagerTest.php
index 40def135816..c326f21e506 100644
--- a/apps/encryption/tests/KeyManagerTest.php
+++ b/apps/encryption/tests/KeyManagerTest.php
@@ -418,7 +418,11 @@ class KeyManagerTest extends TestCase {
['', false, 'privateKey', true],
['', false, false, ''],
['', true, 'privateKey', true],
- ['', true, false, '']
+ ['', true, false, ''],
+ [null, false, 'privateKey', true],
+ [null, false, false, ''],
+ [null, true, 'privateKey', true],
+ [null, true, false, '']
];
}