diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-06-03 14:33:56 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-06-03 14:33:56 +0200 |
commit | 2edcce7e2a8c8cbbe9a693cfa7ac2dfaf8ee4177 (patch) | |
tree | 8c9da92e3c16ea1c4054c1118dbdf5cd2c7dd694 /tests | |
parent | 739c3f01aa32a4de6f671f72fc9cc216d02972d2 (diff) | |
download | nextcloud-server-2edcce7e2a8c8cbbe9a693cfa7ac2dfaf8ee4177.tar.gz nextcloud-server-2edcce7e2a8c8cbbe9a693cfa7ac2dfaf8ee4177.zip |
use not deprecated method in tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/encryption/keys/storage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/encryption/keys/storage.php b/tests/lib/encryption/keys/storage.php index 4fec24094fd..8af3821dc93 100644 --- a/tests/lib/encryption/keys/storage.php +++ b/tests/lib/encryption/keys/storage.php @@ -393,7 +393,7 @@ class StorageTest extends TestCase { ->willReturn($systemWideMountPoint); $this->assertSame($expected, - \Test_Helper::invokePrivate($this->storage, 'getPathToKeys', [$path]) + self::invokePrivate($this->storage, 'getPathToKeys', [$path]) ); } |