@@ -44,7 +44,7 @@ public function testGetDefaultThrowsOnNoConfiguredValue()
4444 $ resolver ->setDefined ($ option = 'foo ' );
4545
4646 $ debug = new OptionsResolverIntrospector ($ resolver );
47- $ this -> assertSame ( ' bar ' , $ debug ->getDefault ($ option) );
47+ $ debug ->getDefault ($ option );
4848 }
4949
5050 public function testGetDefaultThrowsOnNotDefinedOption ()
@@ -54,7 +54,7 @@ public function testGetDefaultThrowsOnNotDefinedOption()
5454 $ resolver = new OptionsResolver ();
5555
5656 $ debug = new OptionsResolverIntrospector ($ resolver );
57- $ this -> assertSame ( ' bar ' , $ debug ->getDefault ('foo ' ) );
57+ $ debug ->getDefault ('foo ' );
5858 }
5959
6060 public function testGetLazyClosures ()
@@ -75,7 +75,7 @@ public function testGetLazyClosuresThrowsOnNoConfiguredValue()
7575 $ resolver ->setDefined ($ option = 'foo ' );
7676
7777 $ debug = new OptionsResolverIntrospector ($ resolver );
78- $ this -> assertSame ( ' bar ' , $ debug ->getLazyClosures ($ option) );
78+ $ debug ->getLazyClosures ($ option );
7979 }
8080
8181 public function testGetLazyClosuresThrowsOnNotDefinedOption ()
@@ -85,7 +85,7 @@ public function testGetLazyClosuresThrowsOnNotDefinedOption()
8585 $ resolver = new OptionsResolver ();
8686
8787 $ debug = new OptionsResolverIntrospector ($ resolver );
88- $ this -> assertSame ( ' bar ' , $ debug ->getLazyClosures ('foo ' ) );
88+ $ debug ->getLazyClosures ('foo ' );
8989 }
9090
9191 public function testGetAllowedTypes ()
0 commit comments