diff options
author | Andrew Summers <18727110+summersab@users.noreply.github.com> | 2023-08-29 17:20:33 -0500 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-03-15 13:05:05 +0100 |
commit | cd585885b83fef458e74b472b70683030da4ab93 (patch) | |
tree | af939460636e7a664e9c2002679581b5ec6b4ecb /tests/lib | |
parent | df1cd1ba7e6e1f6e66a2b3229b5c082f1b81162e (diff) | |
download | nextcloud-server-cd585885b83fef458e74b472b70683030da4ab93.tar.gz nextcloud-server-cd585885b83fef458e74b472b70683030da4ab93.zip |
Refactor `OC\Server::getLockdownManager`
Signed-off-by: Andrew Summers <18727110+summersab@users.noreply.github.com>
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/Lockdown/Filesystem/NoFSTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Lockdown/Filesystem/NoFSTest.php b/tests/lib/Lockdown/Filesystem/NoFSTest.php index 4c0645447ec..adffb01758c 100644 --- a/tests/lib/Lockdown/Filesystem/NoFSTest.php +++ b/tests/lib/Lockdown/Filesystem/NoFSTest.php @@ -39,7 +39,7 @@ class NoFSTest extends \Test\TestCase { $token->setScope([ 'filesystem' => true ]); - \OC::$server->getLockdownManager()->setToken($token); + \OC::$server->get('LockdownManager')->setToken($token); parent::tearDown(); } @@ -50,7 +50,7 @@ class NoFSTest extends \Test\TestCase { 'filesystem' => false ]); - \OC::$server->getLockdownManager()->setToken($token); + \OC::$server->get('LockdownManager')->setToken($token); $this->createUser('foo', 'var'); } |