@@ -29,7 +29,6 @@ pub fn combine_configs(
2929 forge_config_from_scarb : & ForgeConfigFromScarb ,
3030 additional_args : & [ OsString ] ,
3131 trace_args : TraceArgs ,
32- experimental_oracles : bool ,
3332) -> ForgeConfig {
3433 let execution_data_to_save = ExecutionDataToSave :: from_flags (
3534 save_trace_data || forge_config_from_scarb. save_trace_data ,
@@ -53,7 +52,6 @@ pub fn combine_configs(
5352 contracts_data,
5453 tracked_resource,
5554 environment_variables : env:: vars ( ) . collect ( ) ,
56- experimental_oracles,
5755 } ) ,
5856 output_config : Arc :: new ( OutputConfig {
5957 trace_args,
@@ -86,7 +84,6 @@ mod tests {
8684 & ForgeConfigFromScarb :: default ( ) ,
8785 & [ ] ,
8886 TraceArgs :: default ( ) ,
89- false ,
9087 ) ;
9188 let config2 = combine_configs (
9289 false ,
@@ -104,7 +101,6 @@ mod tests {
104101 & ForgeConfigFromScarb :: default ( ) ,
105102 & [ ] ,
106103 TraceArgs :: default ( ) ,
107- false ,
108104 ) ;
109105
110106 assert_ne ! ( config. test_runner_config. fuzzer_seed, 0 ) ;
@@ -133,7 +129,6 @@ mod tests {
133129 & ForgeConfigFromScarb :: default ( ) ,
134130 & [ ] ,
135131 TraceArgs :: default ( ) ,
136- false ,
137132 ) ;
138133 assert_eq ! (
139134 config,
@@ -148,7 +143,6 @@ mod tests {
148143 cache_dir: Utf8PathBuf :: default ( ) ,
149144 contracts_data: ContractsData :: default ( ) ,
150145 environment_variables: config. test_runner_config. environment_variables. clone( ) ,
151- experimental_oracles: false ,
152146 } ) ,
153147 output_config: Arc :: new( OutputConfig {
154148 detailed_resources: false ,
@@ -192,7 +186,6 @@ mod tests {
192186 & config_from_scarb,
193187 & [ ] ,
194188 TraceArgs :: default ( ) ,
195- false ,
196189 ) ;
197190 assert_eq ! (
198191 config,
@@ -207,7 +200,6 @@ mod tests {
207200 cache_dir: Utf8PathBuf :: default ( ) ,
208201 contracts_data: ContractsData :: default ( ) ,
209202 environment_variables: config. test_runner_config. environment_variables. clone( ) ,
210- experimental_oracles: false ,
211203 } ) ,
212204 output_config: Arc :: new( OutputConfig {
213205 detailed_resources: true ,
@@ -255,7 +247,6 @@ mod tests {
255247 & config_from_scarb,
256248 & [ ] ,
257249 TraceArgs :: default ( ) ,
258- false ,
259250 ) ;
260251
261252 assert_eq ! (
@@ -271,7 +262,6 @@ mod tests {
271262 cache_dir: Utf8PathBuf :: default ( ) ,
272263 contracts_data: ContractsData :: default ( ) ,
273264 environment_variables: config. test_runner_config. environment_variables. clone( ) ,
274- experimental_oracles: false ,
275265 } ) ,
276266 output_config: Arc :: new( OutputConfig {
277267 detailed_resources: true ,
0 commit comments