From 4ddc2be569f44f76d966697d20610788392e47de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Fri, 17 Jan 2025 13:47:28 +0100 Subject: [PATCH] remove string assertions --- tests/TenantModelTest.php | 2 -- 1 file changed, 2 deletions(-) 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); } });