Skip to content

Commit

Permalink
Fix output.
Browse files Browse the repository at this point in the history
  • Loading branch information
dim-s committed Mar 29, 2020
1 parent 33dc920 commit 1ce0090
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.php.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

name: tester
type: plugin
version: 1.0.2
version: 1.1.0
description: Unit Testing Framework

plugins: [Doc, Hub]
Expand Down
2 changes: 1 addition & 1 deletion src/tester/TestEnvironment.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public function log($message, ...$args)

public function print($message, ...$args)
{
foreach ($args as $i => $arg) $message = str::replace($message, "\{$i\}", $arg);
foreach ($args as $i => $arg) $message = str::replace($message, "{{$i}}", $arg);

foreach ($this->printers as $printer) {
$printer->write($message);
Expand Down

0 comments on commit 1ce0090

Please sign in to comment.