Fix project tests

This commit is contained in:
Jake Barnby 2024-05-22 13:42:34 +12:00
parent 93f50e1e0e
commit f03281a474
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C
2 changed files with 1 additions and 14 deletions

View file

@ -1252,7 +1252,7 @@ class ProjectsConsoleClientTest extends Scope
'name' => $name,
]);
$this->assertEquals($response['headers']['status-code'], 501);
$this->assertEquals(400, $response['headers']['status-code']);
/**
* Test for FAILURE

View file

@ -1,13 +0,0 @@
<?php
namespace Tests\E2E\Services\Projects;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideClient;
class ProjectsCustomClientTest extends Scope
{
use ProjectCustom;
use SideClient;
}