File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ mod tests {
190190 }
191191
192192 fn create_mock_configs ( ) -> ( PathBuf , PathBuf , PathBuf ) {
193- let config_path = PathBuf :: from ( "unit_test_config " ) ;
193+ let config_path = PathBuf :: from ( "config " ) ;
194194 let monitor_dir = config_path. join ( "monitors" ) ;
195195 let trigger_dir = config_path. join ( "triggers" ) ;
196196 let network_dir = config_path. join ( "networks" ) ;
@@ -200,9 +200,9 @@ mod tests {
200200 fs:: create_dir_all ( & trigger_dir) . expect ( "Failed to create trigger directory" ) ;
201201 fs:: create_dir_all ( & network_dir) . expect ( "Failed to create network directory" ) ;
202202
203- let monitor_path = monitor_dir. join ( "test_monitor .json" ) ;
204- let trigger_path = trigger_dir. join ( "test_trigger .json" ) ;
205- let network_path = network_dir. join ( "ethereum_mainnet .json" ) ;
203+ let monitor_path = monitor_dir. join ( "integration_test_monitor .json" ) ;
204+ let trigger_path = trigger_dir. join ( "integration_test_trigger .json" ) ;
205+ let network_path = network_dir. join ( "integration_test_ethereum_mainnet .json" ) ;
206206
207207 fs:: write (
208208 & monitor_path,
You can’t perform that action at this time.
0 commit comments