Skip to content

Commit c381744

Browse files
committed
stop using void in test files
1 parent 3f0171f commit c381744

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Extension/Core/Type/NumberTypeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function testDefaultFormattingWithScaleAndStringInput()
7777
$this->assertSame('12345,68', $form->createView()->vars['value']);
7878
}
7979

80-
public function testStringInputWithFloatData(): void
80+
public function testStringInputWithFloatData()
8181
{
8282
$this->expectException('Symfony\Component\Form\Exception\TransformationFailedException');
8383
$this->expectExceptionMessage('Expected a numeric string.');
@@ -88,7 +88,7 @@ public function testStringInputWithFloatData(): void
8888
]);
8989
}
9090

91-
public function testStringInputWithIntData(): void
91+
public function testStringInputWithIntData()
9292
{
9393
$this->expectException('Symfony\Component\Form\Exception\TransformationFailedException');
9494
$this->expectExceptionMessage('Expected a numeric string.');

0 commit comments

Comments
 (0)