diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-02 14:25:07 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-02 14:44:41 +0100 |
commit | 28ceab2f616d45a53dcc00c2cff53d5524bf0e9e (patch) | |
tree | 2c74c0dfb996625aad559e959c35860ba243770c /tests | |
parent | f558ac7dd583c8135e40933e9e35d3505b9b6cb6 (diff) | |
download | nextcloud-server-28ceab2f616d45a53dcc00c2cff53d5524bf0e9e.tar.gz nextcloud-server-28ceab2f616d45a53dcc00c2cff53d5524bf0e9e.zip |
Fix endless recursion
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/user/user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/user/user.php b/tests/lib/user/user.php index 134b79383ea..1f613edc4e6 100644 --- a/tests/lib/user/user.php +++ b/tests/lib/user/user.php @@ -475,7 +475,7 @@ class User extends \Test\TestCase { ->method('getAbsoluteURL') ->withAnyParameters() ->willReturn('http://localhost:8888/owncloud'); - $user = new \OC\User\User('foo', $backend, null, null, null, $urlGenerator); + $user = new \OC\User\User('foo', $backend, null, null, $urlGenerator); $this->assertEquals("foo@localhost:8888/owncloud", $user->getCloudId()); } } |