diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-12-20 12:38:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-20 12:38:05 +0100 |
commit | dc8809e754c22addaab20401a7505dcc4082541c (patch) | |
tree | 3d976ec5e32d105967c2d76bfbb9f8ca694cd61f /tests | |
parent | b6fcf59881b27f0a0b7541ff6e01921d7a23142e (diff) | |
parent | 0ff3c81fc14793ddb39d6d46549ec56cfec26ddd (diff) | |
download | nextcloud-server-dc8809e754c22addaab20401a7505dcc4082541c.tar.gz nextcloud-server-dc8809e754c22addaab20401a7505dcc4082541c.zip |
Merge pull request #7498 from nextcloud/fix_7497
Better handle avatars
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/AvatarTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/AvatarTest.php b/tests/lib/AvatarTest.php index 240aecc115e..9da719c26de 100644 --- a/tests/lib/AvatarTest.php +++ b/tests/lib/AvatarTest.php @@ -210,7 +210,7 @@ class AvatarTest extends \Test\TestCase { ->method('putContent') ->with($image->data()); - $this->config->expects($this->once()) + $this->config->expects($this->exactly(3)) ->method('setUserValue'); $this->config->expects($this->once()) ->method('getUserValue'); |