-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CodeQuality] Skip loose comparison on assertNotEquals as well on Ass…
…ertEqualsToSameRector (#436) * [CodeQuality] Skip loose comparison on assertNotEquals as well on AssertEqualsToSameRector * [CodeQuality] Skip loose comparison on assertNotEquals as well on AssertEqualsToSameRector
- Loading branch information
1 parent
918b33b
commit 6b0e4f0
Showing
2 changed files
with
46 additions
and
26 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
.../MethodCall/AssertEqualsToSameRector/Fixture/skip_loose_compare_assert_not_equals.php.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertEqualsToSameRector\Fixture; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
|
||
final class SkipLooseCompareAssertNotEquals extends TestCase | ||
{ | ||
public function test(float $float) | ||
{ | ||
$this->assertNotEquals(1, $float); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters