remove debug prints

This commit is contained in:
shimon 2025-12-02 12:46:59 +02:00
parent fde30b6216
commit c34649cb50
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ trait ProjectCustom
$this->assertEquals(201, $team['headers']['status-code']);
$this->assertEquals('Demo Project Team', $team['body']['name']);
$this->assertNotEmpty($team['body']['$id']);
var_dump(['region' => System::getEnv('_APP_REGION', 'default')]);
$project = $this->client->call(Client::METHOD_POST, '/projects', [
'origin' => 'http://localhost',
'content-type' => 'application/json',

View file

@ -47,7 +47,7 @@ class RealtimeConsoleClientTest extends Scope
]));
$response = json_decode($client->receive(), true);
var_dump($response);
$this->assertArrayHasKey('type', $response);
$this->assertArrayHasKey('data', $response);
$this->assertEquals('response', $response['type']);