diff --git a/tests/DeepCopyTest/Filter/SetNullFilterTest.php b/tests/DeepCopyTest/Filter/SetNullFilterTest.php index 2f41f16..6ca7f1a 100644 --- a/tests/DeepCopyTest/Filter/SetNullFilterTest.php +++ b/tests/DeepCopyTest/Filter/SetNullFilterTest.php @@ -22,6 +22,6 @@ public function test_it_sets_the_given_property_to_null() $filter->apply($object, 'foo', null); $this->assertNull($object->foo); - $this->assertEquals('bam', $object->bim); + $this->assertSame('bam', $object->bim); } } diff --git a/tests/DeepCopyTest/Matcher/Doctrine/DoctrineProxyMatcherTest.php b/tests/DeepCopyTest/Matcher/Doctrine/DoctrineProxyMatcherTest.php index 23f8cc7..6303a4c 100644 --- a/tests/DeepCopyTest/Matcher/Doctrine/DoctrineProxyMatcherTest.php +++ b/tests/DeepCopyTest/Matcher/Doctrine/DoctrineProxyMatcherTest.php @@ -1,6 +1,6 @@