Skip to content

Commit 1bf3091

Browse files
committed
Add missing check
1 parent 21aeb49 commit 1bf3091

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

program/tests/processor.rs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5911,7 +5911,15 @@ fn test_sync_native() {
59115911
&mut owner_account,
59125912
&mut rent_sysvar,
59135913
],
5914-
&[Check::success()],
5914+
&[
5915+
Check::success(),
5916+
Check::account(&non_native_account_key)
5917+
.data_slice(109, &[0, 0, 0, 0])
5918+
.build(),
5919+
Check::account(&non_native_account_key)
5920+
.data_slice(64, &0u64.to_le_bytes())
5921+
.build(),
5922+
],
59155923
)
59165924
.unwrap();
59175925

0 commit comments

Comments
 (0)