Skip to content

Commit 3336edb

Browse files
committed
chore: fix test
1 parent 579b9dc commit 3336edb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

crates/store/src/db/tests.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1516,7 +1516,7 @@ fn test_select_account_code_at_block_with_updates() {
15161516

15171517
// Create initial account with code v1 at block 1
15181518
let code_v1_str = "\
1519-
export.account_procedure_1
1519+
pub proc account_procedure_1
15201520
push.1.2
15211521
add
15221522
end
@@ -1539,7 +1539,7 @@ fn test_select_account_code_at_block_with_updates() {
15391539

15401540
// Create account with different code v2 at block 2
15411541
let code_v2_str = "\
1542-
export.account_procedure_1
1542+
pub proc account_procedure_1
15431543
push.3.4
15441544
mul
15451545
end
@@ -1567,7 +1567,7 @@ fn test_select_account_code_at_block_with_updates() {
15671567

15681568
// Create account with different code v3 at block 3
15691569
let code_v3_str = "\
1570-
export.account_procedure_1
1570+
pub proc account_procedure_1
15711571
push.5.6
15721572
sub
15731573
end

0 commit comments

Comments
 (0)