From bed9cd9176605b709ea963c6076206a4a19bbe32 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Tue, 13 Jul 2021 11:47:43 +0200 Subject: [PATCH] Fix minor typos --- .../Tests/Console/Descriptor/AbstractDescriptorTest.php | 2 +- .../Component/Console/Tests/Helper/ProgressBarTest.php | 6 +++--- .../SendFailedMessageForRetryListenerTest.php | 8 ++++---- .../Messenger/Tests/Transport/AmqpExt/ConnectionTest.php | 2 +- .../Validator/Tests/Validator/RecursiveValidatorTest.php | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Console/Descriptor/AbstractDescriptorTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Console/Descriptor/AbstractDescriptorTest.php index 30cc22e203..550dcb46ca 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Console/Descriptor/AbstractDescriptorTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Console/Descriptor/AbstractDescriptorTest.php @@ -209,7 +209,7 @@ abstract class AbstractDescriptorTest extends TestCase } /** @dataProvider getClassDescriptionTestData */ - public function testGetClassDecription($object, $expectedDescription) + public function testGetClassDescription($object, $expectedDescription) { $this->assertEquals($expectedDescription, $this->getDescriptor()->getClassDescription($object)); } diff --git a/src/Symfony/Component/Console/Tests/Helper/ProgressBarTest.php b/src/Symfony/Component/Console/Tests/Helper/ProgressBarTest.php index 9fdaa570d3..0cf06353d2 100644 --- a/src/Symfony/Component/Console/Tests/Helper/ProgressBarTest.php +++ b/src/Symfony/Component/Console/Tests/Helper/ProgressBarTest.php @@ -1018,14 +1018,14 @@ And, as in uffish thought he stood, The Jabberwock, with eyes of flame, Came whi $bar->setRedrawFrequency(4); // disable step based redraws $bar->start(); - $bar->setProgress(1); // No treshold hit, no redraw + $bar->setProgress(1); // No threshold hit, no redraw $bar->maxSecondsBetweenRedraws(2); sleep(1); $bar->setProgress(2); // Still no redraw because it takes 2 seconds for a redraw sleep(1); $bar->setProgress(3); // 1+1 = 2 -> redraw finally $bar->setProgress(4); // step based redraw freq hit, redraw even without sleep - $bar->setProgress(5); // No treshold hit, no redraw + $bar->setProgress(5); // No threshold hit, no redraw $bar->maxSecondsBetweenRedraws(3); sleep(2); $bar->setProgress(6); // No redraw even though 2 seconds passed. Throttling has priority @@ -1056,7 +1056,7 @@ And, as in uffish thought he stood, The Jabberwock, with eyes of flame, Came whi $bar->setProgress(3); // 1 second passed but we changed threshold, should not draw sleep(1); $bar->setProgress(4); // 1+1 seconds = 2 seconds passed which conforms threshold, draw - $bar->setProgress(5); // No treshold hit, no redraw + $bar->setProgress(5); // No threshold hit, no redraw rewind($output->getStream()); $this->assertEquals( diff --git a/src/Symfony/Component/Messenger/Tests/EventListener/SendFailedMessageForRetryListenerTest.php b/src/Symfony/Component/Messenger/Tests/EventListener/SendFailedMessageForRetryListenerTest.php index 9a5861a317..f746689f99 100644 --- a/src/Symfony/Component/Messenger/Tests/EventListener/SendFailedMessageForRetryListenerTest.php +++ b/src/Symfony/Component/Messenger/Tests/EventListener/SendFailedMessageForRetryListenerTest.php @@ -99,12 +99,12 @@ class SendFailedMessageForRetryListenerTest extends TestCase $senderLocator = $this->createMock(ContainerInterface::class); $senderLocator->expects($this->once())->method('has')->willReturn(true); $senderLocator->expects($this->once())->method('get')->willReturn($sender); - $retryStategy = $this->createMock(RetryStrategyInterface::class); - $retryStategy->expects($this->once())->method('isRetryable')->willReturn(true); - $retryStategy->expects($this->once())->method('getWaitingTime')->willReturn(1000); + $retryStrategy = $this->createMock(RetryStrategyInterface::class); + $retryStrategy->expects($this->once())->method('isRetryable')->willReturn(true); + $retryStrategy->expects($this->once())->method('getWaitingTime')->willReturn(1000); $retryStrategyLocator = $this->createMock(ContainerInterface::class); $retryStrategyLocator->expects($this->once())->method('has')->willReturn(true); - $retryStrategyLocator->expects($this->once())->method('get')->willReturn($retryStategy); + $retryStrategyLocator->expects($this->once())->method('get')->willReturn($retryStrategy); $listener = new SendFailedMessageForRetryListener($senderLocator, $retryStrategyLocator); diff --git a/src/Symfony/Component/Messenger/Tests/Transport/AmqpExt/ConnectionTest.php b/src/Symfony/Component/Messenger/Tests/Transport/AmqpExt/ConnectionTest.php index 1fbbb1e753..f75a3e7a3b 100644 --- a/src/Symfony/Component/Messenger/Tests/Transport/AmqpExt/ConnectionTest.php +++ b/src/Symfony/Component/Messenger/Tests/Transport/AmqpExt/ConnectionTest.php @@ -480,7 +480,7 @@ class ConnectionTest extends TestCase $connection->publish('body', ['Foo' => 'X'], 0, new AmqpStamp(null, \AMQP_NOPARAM, ['headers' => ['Bar' => 'Y']])); } - public function testAmqpStampDelireryModeIsUsed() + public function testAmqpStampDeliveryModeIsUsed() { $factory = new TestAmqpFactory( $this->createMock(\AMQPConnection::class), diff --git a/src/Symfony/Component/Validator/Tests/Validator/RecursiveValidatorTest.php b/src/Symfony/Component/Validator/Tests/Validator/RecursiveValidatorTest.php index 0e55cca834..7f47990135 100644 --- a/src/Symfony/Component/Validator/Tests/Validator/RecursiveValidatorTest.php +++ b/src/Symfony/Component/Validator/Tests/Validator/RecursiveValidatorTest.php @@ -1905,7 +1905,7 @@ class RecursiveValidatorTest extends TestCase $this->assertSame($constraint, $violations[0]->getConstraint()); } - public function testCollectionConstraitViolationHasCorrectContext() + public function testCollectionConstraintViolationHasCorrectContext() { $data = [ 'foo' => 'fooValue',