diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-04-15 19:34:23 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-04-15 19:34:23 +0200 |
commit | 5437844b7ec24d6011e8f1e4a0df5f727d259ea5 (patch) | |
tree | 3683815b562d4897d3d6eabf69e5e4513b3aa9d2 /tests | |
parent | f6cb45203755d85b33684b1dab1a91b5b05e8c9a (diff) | |
download | nextcloud-server-5437844b7ec24d6011e8f1e4a0df5f727d259ea5.tar.gz nextcloud-server-5437844b7ec24d6011e8f1e4a0df5f727d259ea5.zip |
fix credentialsManager documentation and ensure userId to be used as string
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Security/CredentialsManagerTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/Security/CredentialsManagerTest.php b/tests/lib/Security/CredentialsManagerTest.php index b5d4116b293..9c1a0cb9291 100644 --- a/tests/lib/Security/CredentialsManagerTest.php +++ b/tests/lib/Security/CredentialsManagerTest.php @@ -134,9 +134,9 @@ class CredentialsManagerTest extends \Test\TestCase { 'privateCredentials' ], [ - null, - 'systemCredentials' - ] + '', + 'systemCredentials', + ], ]; } } |