From 68a92d36ec108ce6f630bc1f20ef492aace47f5d Mon Sep 17 00:00:00 2001
From: Thomas Müller <thomas.mueller@tmit.eu>
Date: Tue, 12 Apr 2016 14:42:29 +0200
Subject: Use baseUrl as provided

---
 build/integration/features/bootstrap/BasicStructure.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/build/integration/features/bootstrap/BasicStructure.php b/build/integration/features/bootstrap/BasicStructure.php
index d2aed82055a..31be33165e6 100644
--- a/build/integration/features/bootstrap/BasicStructure.php
+++ b/build/integration/features/bootstrap/BasicStructure.php
@@ -25,7 +25,7 @@ trait BasicStructure {
 	private $cookieJar;
 
 	/** @var string */
-	private $requesttoken;
+	private $requestToken;
 
 	public function __construct($baseUrl, $admin, $regular_user_password) {
 
@@ -33,8 +33,8 @@ trait BasicStructure {
 		$this->baseUrl = $baseUrl;
 		$this->adminUser = $admin;
 		$this->regularUser = $regular_user_password;
-		$this->localBaseUrl = substr($this->baseUrl, 0, -4);
-		$this->remoteBaseUrl = substr($this->baseUrl, 0, -4);
+		$this->localBaseUrl = $this->baseUrl;
+		$this->remoteBaseUrl = $this->baseUrl;
 		$this->currentServer = 'LOCAL';
 		$this->cookieJar = new \GuzzleHttp\Cookie\CookieJar();
 
@@ -168,7 +168,7 @@ trait BasicStructure {
 	 * @param ResponseInterface $response
 	 */
 	private function extracRequestTokenFromResponse(ResponseInterface $response) {
-		$this->requesttoken = substr(preg_replace('/(.*)data-requesttoken="(.*)">(.*)/sm', '\2', $response->getBody()->getContents()), 0, 89);
+		$this->requestToken = substr(preg_replace('/(.*)data-requesttoken="(.*)">(.*)/sm', '\2', $response->getBody()->getContents()), 0, 89);
 	}
 
 	/**
@@ -196,7 +196,7 @@ trait BasicStructure {
 				'body' => [
 					'user' => $user,
 					'password' => $password,
-					'requesttoken' => $this->requesttoken,
+					'requesttoken' => $this->requestToken,
 				],
 				'cookies' => $this->cookieJar,
 			]
@@ -220,7 +220,7 @@ trait BasicStructure {
 				'cookies' => $this->cookieJar,
 			]
 		);
-		$request->addHeader('requesttoken', $this->requesttoken);
+		$request->addHeader('requesttoken', $this->requestToken);
 		try {
 			$this->response = $client->send($request);
 		} catch (\GuzzleHttp\Exception\ClientException $e) {
-- 
cgit v1.2.3