Skip to content

Commit

Permalink
Fix duplicate fixture class take 3 (#3348)
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Feb 6, 2023
1 parent 8ddc3d9 commit 2db6fc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:

-
if: github.ref == 'refs/heads/main'
run: vendor/bin/phpunit ${{ matrix.path }} --colors
run: |
sleep 30
vendor/bin/phpunit ${{ matrix.path }} --colors
-
if: github.ref != 'refs/heads/main'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Rector\Tests\Naming\Rector\Foreach_\RenameForeachValueVariableToMatchM

use Rector\Tests\Naming\Rector\Foreach_\RenameForeachValueVariableToMatchMethodCallReturnTypeRector\Source\Method;

class Fixture
class GetOtherMethod
{
public function run()
{
Expand All @@ -31,7 +31,7 @@ namespace Rector\Tests\Naming\Rector\Foreach_\RenameForeachValueVariableToMatchM

use Rector\Tests\Naming\Rector\Foreach_\RenameForeachValueVariableToMatchMethodCallReturnTypeRector\Source\Method;

class Fixture
class GetOtherMethod
{
public function run()
{
Expand Down

0 comments on commit 2db6fc6

Please sign in to comment.