fixed factory and test

This commit is contained in:
Godfrey M 2025-01-16 12:14:03 -08:00
parent f050864fb4
commit 3f3f2bfc61
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ class LicenseSeatFactory extends Factory
{ {
return [ return [
'license_id' => License::factory(), 'license_id' => License::factory(),
'dead' => false, 'unassignable' => false,
]; ];
} }

View file

@ -32,7 +32,7 @@ class LicenseCheckinTest extends TestCase
$licenseSeat->refresh(); $licenseSeat->refresh();
$this->assertEquals(1, $licenseSeat->dead); $this->assertEquals(1, $licenseSeat->unassignable);
} }
public function testCannotCheckinLicenseThatIsNotAssigned() public function testCannotCheckinLicenseThatIsNotAssigned()