Skip to content

Commit

Permalink
Remove forgotten tr()
Browse files Browse the repository at this point in the history
  • Loading branch information
roxblnfk committed Oct 28, 2024
1 parent ed75242 commit 38a2eb3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"jetbrains/phpstorm-attributes": "dev-master@dev",
"laminas/laminas-code": "^4.0",
"phpunit/phpunit": "^10.5",
"spiral/code-style": "^2.1.2",
"spiral/code-style": "~2.1.2",
"spiral/core": "^3.13",
"symfony/var-dumper": "^6.0 || ^7.0",
"ta-tikoma/phpunit-architecture-test": "^0.8.4",
Expand Down
1 change: 0 additions & 1 deletion src/Client/Update/UpdateHandle.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ private function fetchResult(int|float|null $timeout = null): void
$failure = $result->getFailure();
\assert($failure !== null);
$e = FailureConverter::mapFailureToException($failure, $this->converter);
tr($e);

$this->result = new WorkflowUpdateException(
$e->getMessage(),
Expand Down
2 changes: 1 addition & 1 deletion tests/Arch/ArchTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ final class ArchTest extends TestCase

use ArchitectureAsserts;

public function testDontForgetDebugFunctions(): void
public function testForgottenDebugFunctions(): void
{
$functions = ['dump', 'trap', 'tr', 'td', 'var_dump'];
$layer = $this->layer();
Expand Down

0 comments on commit 38a2eb3

Please sign in to comment.