From: Lukas Reschke Date: Thu, 18 May 2017 18:32:38 +0000 (+0200) Subject: Use a standardized Bearer now X-Git-Tag: v12.0.0RC1~3^2~8 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f2a01e1b0881e6a198a75d3e9b08c229d39f1e17;p=nextcloud-server.git Use a standardized Bearer now Signed-off-by: Lukas Reschke --- diff --git a/build/integration/features/bootstrap/Auth.php b/build/integration/features/bootstrap/Auth.php index 7addcab5f97..ae411cc7ab3 100644 --- a/build/integration/features/bootstrap/Auth.php +++ b/build/integration/features/bootstrap/Auth.php @@ -187,7 +187,7 @@ trait Auth { * @param string $method */ public function requestingWithUsingAnUnrestrictedClientToken($url, $method) { - $this->sendRequest($url, $method, 'token ' . $this->unrestrictedClientToken); + $this->sendRequest($url, $method, 'Bearer ' . $this->unrestrictedClientToken); } /** @@ -197,7 +197,7 @@ trait Auth { * @param string $method */ public function requestingWithUsingARestrictedClientToken($url, $method) { - $this->sendRequest($url, $method, 'token ' . $this->restrictedClientToken); + $this->sendRequest($url, $method, 'Bearer ' . $this->restrictedClientToken); } /**