Skip to content

Commit

Permalink
Merge pull request #159 from open-source-contributions/test_enhanceme…
Browse files Browse the repository at this point in the history
…nt_stuffs

Fix namespace and improve assertEquals
  • Loading branch information
mnapoli authored Aug 28, 2020
2 parents 969b211 + 03cd017 commit a3409d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/DeepCopyTest/Filter/SetNullFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php declare(strict_types=1);

namespace DeepCopyTest\Matcher;
namespace DeepCopyTest\Matcher\Doctrine;

use BadMethodCallException;
use DeepCopy\Matcher\Doctrine\DoctrineProxyMatcher;
Expand Down

0 comments on commit a3409d1

Please sign in to comment.