aboutsummaryrefslogtreecommitdiff
path: root/tests/TestBaseApi.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TestBaseApi.php')
-rw-r--r--tests/TestBaseApi.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/TestBaseApi.php b/tests/TestBaseApi.php
index 50a2413..f860d10 100644
--- a/tests/TestBaseApi.php
+++ b/tests/TestBaseApi.php
@@ -187,7 +187,8 @@ class TestBaseApi extends TestBase
* @uses getRequest()
*/
protected function getLoggedInRequest(
- $urlSuffix = null, $auth = true, $privateKey = false
+ $urlSuffix = null, $auth = true, $privateKey = false,
+ $setCookie = true
) {
if (is_array($auth)) {
list($username, $password) = $auth;
@@ -217,7 +218,9 @@ class TestBaseApi extends TestBase
$this->assertEquals(302, $res->getStatus(), 'Login failure');
$req = $this->getRequest($urlSuffix);
- $req->setCookieJar($cookies);
+ if ($setCookie) {
+ $req->setCookieJar($cookies);
+ }
return array($req, $uid);
}