From cab6ef11a98dceb22a3e2597ef4557ac30b39bea Mon Sep 17 00:00:00 2001 From: Hugo Thunnissen Date: Mon, 20 Jun 2022 16:07:07 +0200 Subject: [PATCH] Fix typo --- tests/Composer/Test/Command/InstallCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Composer/Test/Command/InstallCommandTest.php b/tests/Composer/Test/Command/InstallCommandTest.php index 350f1c0d1..9ca2554c4 100644 --- a/tests/Composer/Test/Command/InstallCommandTest.php +++ b/tests/Composer/Test/Command/InstallCommandTest.php @@ -157,7 +157,7 @@ class InstallCommandTest extends TestCase $this->assertNotEquals(0, $tester->getStatusCode()); $this->assertMatchesRegularExpression( '/is[[:blank:]]+not[[:blank:]]+found[[:blank:]]+for[[:blank:]]+package[[:blank:]]+test\\/two/', - \str_replaece(PHP_EOL, '', $tester->getDisplay()) + \str_replace(PHP_EOL, '', $tester->getDisplay()) ); }