Fix failing tests
This commit is contained in:
parent
a5521ecb79
commit
9300e1116d
3 changed files with 9 additions and 4 deletions
|
@ -46,8 +46,8 @@ class SSHKeyControllerTest extends ClientApiIntegrationTestCase
|
|||
$this->assertSoftDeleted($key);
|
||||
$this->assertNotSoftDeleted($key2);
|
||||
|
||||
$this->deleteJson($this->link($key))->assertNoContent();
|
||||
$this->deleteJson($this->link($key2))->assertNoContent();
|
||||
$this->deleteJson($this->link($key))->assertNotFound();
|
||||
$this->deleteJson($this->link($key2))->assertNotFound();
|
||||
|
||||
$this->assertNotSoftDeleted($key2);
|
||||
}
|
||||
|
|
Reference in a new issue