@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | { |
14 | 14 | public function testCorrectGuidLogin() |
15 | 15 | { |
16 | - $this->get('/services.php?check_guid&guid=' . $this->guid) |
|
16 | + $this->get('/services.php?check_guid&guid='.$this->guid) |
|
17 | 17 | ->see(Constants::$operation_succeded) |
18 | 18 | ->seeHeader('Content-Type', 'text/plain; charset=UTF-8') |
19 | 19 | ->assertResponseOk(200); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | { |
24 | 24 | $incorrectGuid = '{DE43-D62C-A609-UIFSDDFUISF}'; |
25 | 25 | |
26 | - $this->get('/services.php?check_guid&guid=' . $incorrectGuid) |
|
26 | + $this->get('/services.php?check_guid&guid='.$incorrectGuid) |
|
27 | 27 | ->see(Constants::$wrong_guid) |
28 | 28 | ->seeHeader('Content-Type', 'text/plain; charset=UTF-8') |
29 | 29 | ->assertResponseOk(200); // need to be 200 cause client otherwise crash.. |