@@ -15,37 +15,37 @@ use std::{collections::HashMap, fs};
1515
1616#[ test]
1717fn trace_resources_call ( ) {
18- assert_resources_for_test ( "test_call" , check_call) ;
18+ assert_vm_resources_for_test ( "test_call" , check_call) ;
1919}
2020
2121#[ test]
2222fn trace_resources_deploy ( ) {
23- assert_resources_for_test ( "test_deploy" , check_deploy) ;
23+ assert_vm_resources_for_test ( "test_deploy" , check_deploy) ;
2424}
2525
2626#[ test]
2727fn trace_resources_l1_handler ( ) {
28- assert_resources_for_test ( "test_l1_handler" , check_l1_handler) ;
28+ assert_vm_resources_for_test ( "test_l1_handler" , check_l1_handler) ;
2929}
3030
3131#[ test]
3232fn trace_resources_lib_call ( ) {
33- assert_resources_for_test ( "test_lib_call" , check_libcall) ;
33+ assert_vm_resources_for_test ( "test_lib_call" , check_libcall) ;
3434}
3535
3636#[ test]
3737#[ ignore = "TODO(#1657)" ]
3838fn trace_resources_failed_call ( ) {
39- assert_resources_for_test ( "test_failed_call" , |_| ( ) ) ;
39+ assert_vm_resources_for_test ( "test_failed_call" , |_| ( ) ) ;
4040}
4141
4242#[ test]
4343#[ ignore = "TODO(#1657)" ]
4444fn trace_resources_failed_lib_call ( ) {
45- assert_resources_for_test ( "test_failed_lib_call" , |_| ( ) ) ;
45+ assert_vm_resources_for_test ( "test_failed_lib_call" , |_| ( ) ) ;
4646}
4747
48- fn assert_resources_for_test (
48+ fn assert_vm_resources_for_test (
4949 test_name : & str ,
5050 check_not_easily_unifiable_syscalls : fn ( & ProfilerCallTrace ) ,
5151) {
0 commit comments