Skip to content

Commit

Permalink
minor #50427 [VarDumper] Fix failures on appveyor (nicolas-grekas)
Browse files Browse the repository at this point in the history
This PR was merged into the 6.3 branch.

Discussion
----------

[VarDumper] Fix failures on appveyor

| Q             | A
| ------------- | ---
| Branch?       | 6.3
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

Commits
-------

52f45a4062 [VarDumper] Fix failures on appveyor
  • Loading branch information
nicolas-grekas committed May 25, 2023
2 parents 81fb69e + c281188 commit b34e418
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions Tests/Dumper/functions/dd_with_multiple_args.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test dd() with multiple args shows line number
--FILE--
<?php
putenv('NO_COLOR=1');

$vendor = __DIR__;
while (!file_exists($vendor.'/vendor')) {
Expand Down
1 change: 1 addition & 0 deletions Tests/Dumper/functions/dd_with_null.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test dd() with null doesn't show line number
--FILE--
<?php
putenv('NO_COLOR=1');

$vendor = __DIR__;
while (!file_exists($vendor.'/vendor')) {
Expand Down
1 change: 1 addition & 0 deletions Tests/Dumper/functions/dd_with_single_arg.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test dd() with one arg doesn't show line number
--FILE--
<?php
putenv('NO_COLOR=1');

$vendor = __DIR__;
while (!file_exists($vendor.'/vendor')) {
Expand Down
1 change: 1 addition & 0 deletions Tests/Dumper/functions/dump_with_multiple_args.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test dump() with multiple args shows line number
--FILE--
<?php
putenv('NO_COLOR=1');

$vendor = __DIR__;
while (!file_exists($vendor.'/vendor')) {
Expand Down
1 change: 1 addition & 0 deletions Tests/Dumper/functions/dump_with_null.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test dump() with null doesn't show line number
--FILE--
<?php
putenv('NO_COLOR=1');

$vendor = __DIR__;
while (!file_exists($vendor.'/vendor')) {
Expand Down
1 change: 1 addition & 0 deletions Tests/Dumper/functions/dump_with_single_arg.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test dump() with one arg doesn't show line number
--FILE--
<?php
putenv('NO_COLOR=1');

$vendor = __DIR__;
while (!file_exists($vendor.'/vendor')) {
Expand Down

0 comments on commit b34e418

Please sign in to comment.