File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
src/Symfony/Component/Translation/Tests/Command Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 27
27
*/
28
28
class TranslationPullCommandTest extends TranslationProviderTestCase
29
29
{
30
+ protected function setUp (): void
31
+ {
32
+ putenv ('COLUMNS=121 ' );
33
+ parent ::setUp ();
34
+ }
35
+
36
+ protected function tearDown (): void
37
+ {
38
+ parent ::tearDown ();
39
+ putenv ('COLUMNS ' );
40
+ }
41
+
30
42
public function testPullNewXlf12Messages ()
31
43
{
32
44
$ arrayLoader = new ArrayLoader ();
Original file line number Diff line number Diff line change 26
26
*/
27
27
class TranslationPushCommandTest extends TranslationProviderTestCase
28
28
{
29
+ protected function setUp (): void
30
+ {
31
+ putenv ('COLUMNS=121 ' );
32
+ parent ::setUp ();
33
+ }
34
+
35
+ protected function tearDown (): void
36
+ {
37
+ parent ::tearDown ();
38
+ putenv ('COLUMNS ' );
39
+ }
40
+
29
41
public function testPushNewMessages ()
30
42
{
31
43
$ arrayLoader = new ArrayLoader ();
You can’t perform that action at this time.
0 commit comments