mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 18:50:47 -04:00
Add tests for null user
This commit is contained in:
parent
c215255771
commit
f000df0263
1 changed files with 5 additions and 1 deletions
|
|
@ -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, '']
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue