Skip to content
Snippets Groups Projects
Commit 84a5d43e authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #14809 from rullzer/avatarcontroller_cache_fix

Fix the avatarcontroller cache needing the cache dir
parents dbd2bb66 3560b32d
No related branches found
No related tags found
No related merge requests found
......@@ -95,6 +95,10 @@ class AvatarControllerTest extends \Test\TestCase {
\OC_User::setUserId($this->user);
\OC_Util::setupFS($this->user);
// Create Cache dir
$view = new \OC\Files\View('/'.$this->user);
$view->mkdir('cache');
// Configure userMock
$this->userMock->method('getDisplayName')->willReturn($this->user);
$this->userMock->method('getUID')->willReturn($this->user);
......@@ -275,7 +279,6 @@ class AvatarControllerTest extends \Test\TestCase {
/**
* Check what happens when we upload a GIF
* TODO: Finish
*/
public function testPostAvatarFileGif() {
//Create temp file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment