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:
@ -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',
|
||||
|
||||
Reference in New Issue
Block a user