Merge pull request #16719 from owncloud/fix-encryption-tests

use not deprecated method in tests
This commit is contained in:
Thomas Müller 2015-06-03 14:36:10 +02:00
commit 3d289a58cd
1 changed files with 1 additions and 1 deletions

View File

@ -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])
);
}