Browse Source

Merge pull request #16714 from owncloud/fix-cors-test

Fix #16713
remotes/origin/poc-doctrine-migrations
Lukas Reschke 11 years ago
parent
commit
3a233b8698
  1. 7
      tests/lib/appframework/middleware/security/CORSMiddlewareTest.php

7
tests/lib/appframework/middleware/security/CORSMiddlewareTest.php

@ -121,6 +121,13 @@ class CORSMiddlewareTest extends \Test\TestCase {
);
$this->reflector->reflect($this, __FUNCTION__);
$middleware = new CORSMiddleware($request, $this->reflector, $this->session);
$this->session->expects($this->never())
->method('logout');
$this->session->expects($this->never())
->method('login')
->with($this->equalTo('user'), $this->equalTo('pass'))
->will($this->returnValue(true));
$this->reflector->reflect($this, __FUNCTION__);
$middleware->beforeController($this, __FUNCTION__, new Response());
}

Loading…
Cancel
Save