3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-03-29 20:04:21 +00:00

Revert "Add return types to test methods"

This reverts commit 83fb6826ee.
This commit is contained in:
Marcus Moore
2024-08-06 13:30:34 -07:00
parent 95516b0343
commit 82e795b642
106 changed files with 498 additions and 498 deletions

View File

@ -6,7 +6,7 @@ use Tests\TestCase;
final class LocationTest extends TestCase
{
public function testPassesIfNotSelfParent(): void
public function testPassesIfNotSelfParent()
{
$a = Location::factory()->make([
'name' => 'Test Location',
@ -17,7 +17,7 @@ final class LocationTest extends TestCase
$this->assertTrue($a->isValid());
}
public function testFailsIfSelfParent(): void
public function testFailsIfSelfParent()
{
$a = Location::factory()->make([
'name' => 'Test Location',