1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00

Updated port types

This commit is contained in:
Eldad Fux 2021-01-03 20:03:27 +02:00
parent f87d25bd2e
commit 7e2920a5f8

View file

@ -35,7 +35,7 @@ abstract class Scope extends TestCase
{
sleep(10);
$emails = json_decode(file_get_contents('http://maildev/email'), true);
$emails = json_decode(file_get_contents('http://maildev:9503/email'), true);
if ($emails && is_array($emails)) {
return end($emails);
@ -48,7 +48,7 @@ abstract class Scope extends TestCase
{
sleep(5);
$resquest = json_decode(file_get_contents('http://request-catcher:5000/__last_request__'), true);
$resquest = json_decode(file_get_contents('http://request-catcher:9504/__last_request__'), true);
$resquest['data'] = json_decode($resquest['data'], true);
return $resquest;