diff --git a/tests/TenantModelTest.php b/tests/TenantModelTest.php index 4be160e4..6fa1329b 100644 --- a/tests/TenantModelTest.php +++ b/tests/TenantModelTest.php @@ -95,12 +95,10 @@ test('random ints are supported', function () { // should statistically be above 1 billion. try { $tenant1 = Tenant::create(); - expect($tenant1->id)->toBeString(); assert((int) $tenant1->id > 10**9); } catch (\AssertionError) { // retry $tenant1 = Tenant::create(); - expect($tenant1->id)->toBeString(); assert((int) $tenant1->id > 10**9); } });