Skip to content

Commit f4e6c3c

Browse files
committed
fix classname for test fixtures
1 parent 034b652 commit f4e6c3c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

rules-tests/PHPUnit60/Rector/ClassMethod/AddDoesNotPerformAssertionToNonAssertingTestRector/Fixture/test_in_annotation.php.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Rector\PHPUnit\Tests\PHPUnit60\Rector\ClassMethod\AddDoesNotPerformAssertionToNonAssertingTestRector\Fixture;
44

5-
class TestInAnnotatoin extends \PHPUnit\Framework\TestCase
5+
class TestInAnnotation extends \PHPUnit\Framework\TestCase
66
{
77
/**
88
* @test
@@ -19,7 +19,7 @@ class TestInAnnotatoin extends \PHPUnit\Framework\TestCase
1919

2020
namespace Rector\PHPUnit\Tests\PHPUnit60\Rector\ClassMethod\AddDoesNotPerformAssertionToNonAssertingTestRector\Fixture;
2121

22-
class TestInAnnotatoin extends \PHPUnit\Framework\TestCase
22+
class TestInAnnotation extends \PHPUnit\Framework\TestCase
2323
{
2424
/**
2525
* @test

rules-tests/PHPUnit60/Rector/ClassMethod/AddDoesNotPerformAssertionToNonAssertingTestRector/Fixture/test_in_annotation_with_test_attribute.php.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Rector\PHPUnit\Tests\PHPUnit60\Rector\ClassMethod\AddDoesNotPerformAssertionToNonAssertingTestRector\Fixture;
44

5-
class TestInAnnotatoinWithTestAttribute extends \PHPUnit\Framework\TestCase
5+
class TestInAnnotationWithTestAttribute extends \PHPUnit\Framework\TestCase
66
{
77
#[\PHPUnit\Framework\Attributes\Test]
88
public function thisIsTest()
@@ -17,7 +17,7 @@ class TestInAnnotatoinWithTestAttribute extends \PHPUnit\Framework\TestCase
1717

1818
namespace Rector\PHPUnit\Tests\PHPUnit60\Rector\ClassMethod\AddDoesNotPerformAssertionToNonAssertingTestRector\Fixture;
1919

20-
class TestInAnnotatoinWithTestAttribute extends \PHPUnit\Framework\TestCase
20+
class TestInAnnotationWithTestAttribute extends \PHPUnit\Framework\TestCase
2121
{
2222
/**
2323
* @doesNotPerformAssertions

0 commit comments

Comments
 (0)