Skip to content

Commit f9ca599

Browse files
committed
fixed tests
1 parent 47340f4 commit f9ca599

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/OptionsResolver2Dot6Test.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected function setUp()
3333

3434
/**
3535
* @expectedException \Symfony\Component\OptionsResolver\Exception\UndefinedOptionsException
36-
* @expectedExceptionMessage The option "foo" does not exist. Known options are: "a", "z".
36+
* @expectedExceptionMessage The option "foo" does not exist. Defined options are: "a", "z".
3737
*/
3838
public function testResolveFailsIfNonExistingOption()
3939
{
@@ -45,7 +45,7 @@ public function testResolveFailsIfNonExistingOption()
4545

4646
/**
4747
* @expectedException \Symfony\Component\OptionsResolver\Exception\UndefinedOptionsException
48-
* @expectedExceptionMessage The options "baz", "foo", "ping" do not exist. Known options are: "a", "z".
48+
* @expectedExceptionMessage The options "baz", "foo", "ping" do not exist. Defined options are: "a", "z".
4949
*/
5050
public function testResolveFailsIfMultipleNonExistingOptions()
5151
{
@@ -1389,7 +1389,7 @@ public function testArrayAccessUnsetNotSupported()
13891389

13901390
/**
13911391
* @expectedException \Symfony\Component\OptionsResolver\Exception\NoSuchOptionException
1392-
* @expectedExceptionMessage The option "undefined" does not exist. Known options are: "foo", "lazy".
1392+
* @expectedExceptionMessage The option "undefined" does not exist. Defined options are: "foo", "lazy".
13931393
*/
13941394
public function testFailIfGetNonExisting()
13951395
{

0 commit comments

Comments
 (0)