From 2edcce7e2a8c8cbbe9a693cfa7ac2dfaf8ee4177 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 3 Jun 2015 14:33:56 +0200 Subject: [PATCH] use not deprecated method in tests --- tests/lib/encryption/keys/storage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) ); }