Skip to content

Commit 5122801

Browse files
committed
minor #62520 [Notifier] fix test (xabbuh)
This PR was merged into the 7.3 branch. Discussion ---------- [Notifier] fix test | Q | A | ------------- | --- | Branch? | 7.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT to be reverted when merging up Commits ------- b139c38 fix test
2 parents ab8b148 + b139c38 commit 5122801

File tree

1 file changed

+3
-2
lines changed
  • src/Symfony/Component/Notifier/Bridge/Smsbox/Tests/Enum

1 file changed

+3
-2
lines changed

src/Symfony/Component/Notifier/Bridge/Smsbox/Tests/Enum/ModeTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111

1212
namespace Symfony\Component\Notifier\Bridge\Smsbox\Tests\Enum;
1313

14-
use PHPUnit\Framework\Attributes\DataProvider;
1514
use PHPUnit\Framework\TestCase;
1615
use Symfony\Component\Notifier\Bridge\Smsbox\Enum\Mode;
1716

1817
class ModeTest extends TestCase
1918
{
20-
#[DataProvider('provideModeValues')]
19+
/**
20+
* @dataProvider provideModeValues
21+
*/
2122
public function testModeValues(Mode $mode, string $value)
2223
{
2324
self::assertSame($value, $mode->value);

0 commit comments

Comments
 (0)