Skip to content

Commit 70cf95e

Browse files
committed
Rename assert_resources -> assert_vm_resources
1 parent 22c9170 commit 70cf95e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

crates/forge/tests/e2e/trace_resources.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,37 +15,37 @@ use std::{collections::HashMap, fs};
1515

1616
#[test]
1717
fn 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]
2222
fn 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]
2727
fn 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]
3232
fn 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)"]
3838
fn 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)"]
4444
fn 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

Comments
 (0)