diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2018-09-13 12:24:06 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2018-09-13 12:24:06 +0200 |
commit | 3b7ac0c94d473b9458d39e4d0b1d4d33cd31c379 (patch) | |
tree | 137936ca4ab003b7f54a7c8b7ca7593469c06b10 /tests | |
parent | fabd3e7ba1a7ff903ccba77c9044b802d073b6ad (diff) | |
download | nextcloud-server-3b7ac0c94d473b9458d39e4d0b1d4d33cd31c379.tar.gz nextcloud-server-3b7ac0c94d473b9458d39e4d0b1d4d33cd31c379.zip |
Change visibility to private
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/SetupTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/SetupTest.php b/tests/lib/SetupTest.php index fc9def6e1c3..628f9393c15 100644 --- a/tests/lib/SetupTest.php +++ b/tests/lib/SetupTest.php @@ -147,7 +147,7 @@ class SetupTest extends \Test\TestCase { \OC::$CLI = true; try { - $webRoot = $this->setupClass::findWebRoot($this->config); + $webRoot = self::invokePrivate($this->setupClass, 'findWebRoot', [$this->config]); } catch (\InvalidArgumentException $e) { $webRoot = false; } |