From e5c03040306902ab6c12c5e5fd17cbb421e374a6 Mon Sep 17 00:00:00 2001 From: Jasper Koers Date: Tue, 20 Apr 2021 12:06:17 +0200 Subject: [PATCH] assetSame with string because of keyType of string --- tests/TenantModelTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TenantModelTest.php b/tests/TenantModelTest.php index 46dc6a00..4e7a4974 100644 --- a/tests/TenantModelTest.php +++ b/tests/TenantModelTest.php @@ -1,6 +1,6 @@ assertSame(1, $tenant1->id); - $this->assertSame(2, $tenant2->id); + $this->assertSame((string) 1, $tenant1->id); + $this->assertSame((string) 2, $tenant2->id); } /** @test */