File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ public void CanUseParamForScriptFilename()
158158 public void CanUseParamForDelay ( )
159159 {
160160 var responseCreator = new FileDynamicResponseCreator ( "file.txt" , endpoint ) ;
161- responseCreator . SetDelayFromString ( "$delay" ) ;
161+ responseCreator . SetDelayFromConfigValue ( "$delay" ) ;
162162
163163 Assert . Equal ( 0 , responseCreator . Delay ) ;
164164 delayParam . Value = "1000" ;
Original file line number Diff line number Diff line change @@ -189,8 +189,8 @@ public ResponseCreator CreateResponseCreator(Endpoint endpoint)
189189 {
190190 throw new NotImplementedException ( ) ;
191191 }
192- //TODO: Change
193- responseCreator . SetDelayFromString ( delay ) ;
192+
193+ responseCreator . SetDelayFromConfigValue ( delay ) ;
194194
195195 var simpleResponseCreator = responseCreator as SimpleResponseCreator ;
196196 if ( simpleResponseCreator != null )
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ public int Delay
141141 }
142142 }
143143
144- public void SetDelayFromString ( string value )
144+ public void SetDelayFromConfigValue ( string value )
145145 {
146146 _delay = value ;
147147 }
You can’t perform that action at this time.
0 commit comments