Skip to content

Commit ec8f7a1

Browse files
minor #49253 [PHPUnit 10] Use TestCase suffix for abstract tests in /Tests/ (OskarStark)
This PR was merged into the 6.3 branch. Discussion ---------- [PHPUnit 10] Use `TestCase` suffix for abstract tests in `/Tests/` | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | Refs symfony/symfony#49233 | License | MIT | Doc PR | n/a Replaces #49234 Using `Test` suffix is deprecated since PHPUnit 10 Spotted in * symfony/symfony#49233 Commits ------- cb3db968e4 [PHPUnit 10] Use `TestCase` suffix for abstract tests in `/Tests/`
1 parent e709251 commit ec8f7a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Validator/Constraints/UserPasswordValidatorTest.php renamed to Tests/Validator/Constraints/UserPasswordValidatorTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* @author Bernhard Schussek <[email protected]>
2626
*/
27-
abstract class UserPasswordValidatorTest extends ConstraintValidatorTestCase
27+
abstract class UserPasswordValidatorTestCase extends ConstraintValidatorTestCase
2828
{
2929
private const PASSWORD = 's3Cr3t';
3030
private const SALT = '^S4lt$';

0 commit comments

Comments
 (0)