diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-06-03 12:03:02 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-06-03 12:33:29 +0200 |
commit | d3e3a84cae9c8926bcff810a0e16bb9dcd024888 (patch) | |
tree | 80d5588474a46f07c6dd8da142c429c3655f058f /tests/core/command/encryption/disabletest.php | |
parent | 500748725c46803ff2a0ec291db37a831322012c (diff) | |
download | nextcloud-server-d3e3a84cae9c8926bcff810a0e16bb9dcd024888.tar.gz nextcloud-server-d3e3a84cae9c8926bcff810a0e16bb9dcd024888.zip |
Move the helpful method to the TestCase class
Diffstat (limited to 'tests/core/command/encryption/disabletest.php')
-rw-r--r-- | tests/core/command/encryption/disabletest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/command/encryption/disabletest.php b/tests/core/command/encryption/disabletest.php index 26c814a9c4e..dfd06e2e26e 100644 --- a/tests/core/command/encryption/disabletest.php +++ b/tests/core/command/encryption/disabletest.php @@ -80,6 +80,6 @@ class DisableTest extends TestCase { ->with('core', 'encryption_enabled', 'no'); } - \Test_Helper::invokePrivate($this->command, 'execute', [$this->consoleInput, $this->consoleOutput]); + self::invokePrivate($this->command, 'execute', [$this->consoleInput, $this->consoleOutput]); } } |