fix unit tests

pull/565/head
Morris Jobke 9 years ago
parent 96d466475c
commit 6482be040b
No known key found for this signature in database
GPG Key ID: 9CE5ED29E7FCD38A
  1. 4
      tests/lib/AppTest.php

@ -452,11 +452,11 @@ class AppTest extends \Test\TestCase {
);
$apps = \OC_App::getEnabledApps();
$this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing',), $apps);
$this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing', 'workflowengine'), $apps);
// mock should not be called again here
$apps = \OC_App::getEnabledApps();
$this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing',), $apps);
$this->assertEquals(array('files', 'app3', 'dav', 'federatedfilesharing', 'workflowengine'), $apps);
$this->restoreAppConfig();
\OC_User::setUserId(null);

Loading…
Cancel
Save