summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-06-03 14:36:10 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-06-03 14:36:10 +0200
commit3d289a58cd77fc1921d343313caf84c22e292d7b (patch)
tree8c9da92e3c16ea1c4054c1118dbdf5cd2c7dd694
parent739c3f01aa32a4de6f671f72fc9cc216d02972d2 (diff)
parent2edcce7e2a8c8cbbe9a693cfa7ac2dfaf8ee4177 (diff)
downloadnextcloud-server-3d289a58cd77fc1921d343313caf84c22e292d7b.tar.gz
nextcloud-server-3d289a58cd77fc1921d343313caf84c22e292d7b.zip
Merge pull request #16719 from owncloud/fix-encryption-tests
use not deprecated method in tests
-rw-r--r--tests/lib/encryption/keys/storage.php2
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])
);
}