diff options
author | Florian Pritz <bluewind@xinu.at> | 2023-01-29 14:10:25 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2023-01-29 14:10:25 +0100 |
commit | 93fbe8dccec7b14c024259f83543bde4a95be298 (patch) | |
tree | 883786b47f0246ec6e0fb85b8b72af703cfaa152 /application/third_party/test-more-php/Test-Simple-OO.php | |
parent | c88be04f0ec35304be812d7f5379c4362008b730 (diff) |
feat(PHP8.2): Fix deprecated string interpolation
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/third_party/test-more-php/Test-Simple-OO.php')
-rwxr-xr-x | application/third_party/test-more-php/Test-Simple-OO.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/third_party/test-more-php/Test-Simple-OO.php b/application/third_party/test-more-php/Test-Simple-OO.php index 9bbe4aada..33fb643a9 100755 --- a/application/third_party/test-more-php/Test-Simple-OO.php +++ b/application/third_party/test-more-php/Test-Simple-OO.php @@ -103,7 +103,7 @@ class TestSimple { $skipinfo = ''; if ($this->NumberOfTests === 'skip_all') $skipinfo = ' # '.$this->SkipAllReason; - echo "1..${NumberOfTests}${skipinfo}\n"; + echo "1..{$NumberOfTests}{$skipinfo}\n"; $this->NumberOfTests = $NumberOfTests; return; |