@@ -44,7 +44,7 @@ public function testGetDefaultThrowsOnNoConfiguredValue()
44
44
$ resolver ->setDefined ($ option = 'foo ' );
45
45
46
46
$ debug = new OptionsResolverIntrospector ($ resolver );
47
- $ this -> assertSame ( ' bar ' , $ debug ->getDefault ($ option) );
47
+ $ debug ->getDefault ($ option );
48
48
}
49
49
50
50
public function testGetDefaultThrowsOnNotDefinedOption ()
@@ -54,7 +54,7 @@ public function testGetDefaultThrowsOnNotDefinedOption()
54
54
$ resolver = new OptionsResolver ();
55
55
56
56
$ debug = new OptionsResolverIntrospector ($ resolver );
57
- $ this -> assertSame ( ' bar ' , $ debug ->getDefault ('foo ' ) );
57
+ $ debug ->getDefault ('foo ' );
58
58
}
59
59
60
60
public function testGetLazyClosures ()
@@ -75,7 +75,7 @@ public function testGetLazyClosuresThrowsOnNoConfiguredValue()
75
75
$ resolver ->setDefined ($ option = 'foo ' );
76
76
77
77
$ debug = new OptionsResolverIntrospector ($ resolver );
78
- $ this -> assertSame ( ' bar ' , $ debug ->getLazyClosures ($ option) );
78
+ $ debug ->getLazyClosures ($ option );
79
79
}
80
80
81
81
public function testGetLazyClosuresThrowsOnNotDefinedOption ()
@@ -85,7 +85,7 @@ public function testGetLazyClosuresThrowsOnNotDefinedOption()
85
85
$ resolver = new OptionsResolver ();
86
86
87
87
$ debug = new OptionsResolverIntrospector ($ resolver );
88
- $ this -> assertSame ( ' bar ' , $ debug ->getLazyClosures ('foo ' ) );
88
+ $ debug ->getLazyClosures ('foo ' );
89
89
}
90
90
91
91
public function testGetAllowedTypes ()
0 commit comments