diff --git a/tests/StockMutationsTest.php b/tests/StockMutationsTest.php index 1339862..d802272 100644 --- a/tests/StockMutationsTest.php +++ b/tests/StockMutationsTest.php @@ -66,9 +66,9 @@ public function it_can_have_mutations_with_reference() $stockMutation = $this->stockModel->stockMutations->first(); $referenceMutation = $this->referenceModel->stockMutations->first(); - $this->assertEquals(1, $stockMutation->reference_id); + $this->assertSame('1', $stockMutation->reference_id); $this->assertEquals(ReferenceModel::class, $stockMutation->reference_type); - $this->assertEquals(1, $referenceMutation->stockable_id); + $this->assertSame('1', $referenceMutation->stockable_id); $this->assertEquals(StockModel::class, $referenceMutation->stockable_type); } }