From d71aa52d73a2f3a70f219d64fe66564d80f4a5f1 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Tue, 5 Jan 2021 15:08:22 +0100 Subject: [PATCH] fix typo --- .../Component/Console/Tests/Input/InputDefinitionTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Console/Tests/Input/InputDefinitionTest.php b/src/Symfony/Component/Console/Tests/Input/InputDefinitionTest.php index d7046f76d1..ab3235314e 100644 --- a/src/Symfony/Component/Console/Tests/Input/InputDefinitionTest.php +++ b/src/Symfony/Component/Console/Tests/Input/InputDefinitionTest.php @@ -242,7 +242,7 @@ class InputDefinitionTest extends TestCase $definition->addOption($this->foo2); } - public function testAddDuplicateNetgatedOption() + public function testAddDuplicateNegatedOption() { $this->expectException('LogicException'); $this->expectExceptionMessage('An option named "no-foo" already exists.'); @@ -252,7 +252,7 @@ class InputDefinitionTest extends TestCase $definition->addOption(new InputOption('foo', null, InputOption::VALUE_NEGATABLE)); } - public function testAddDuplicateNetgatedReverseOption() + public function testAddDuplicateNegatedReverseOption() { $this->expectException('LogicException'); $this->expectExceptionMessage('An option named "no-foo" already exists.');