From 439cb137eebbd66b71fbc9cc5d7ab950fb6138c1 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Thu, 17 Apr 2025 23:45:14 -0400 Subject: [Rust] Format code --- rust/tests/binary_view.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'rust') diff --git a/rust/tests/binary_view.rs b/rust/tests/binary_view.rs index a0475cd3..db094247 100644 --- a/rust/tests/binary_view.rs +++ b/rust/tests/binary_view.rs @@ -39,7 +39,10 @@ fn test_binary_saving() { assert!(view.save_to_path(&temp_path)); // Verify that the file exists and is modified. let new_view = binaryninja::load(temp_path).expect("Failed to load new view"); - assert_eq!(new_view.read_vec(contents_addr, 4), [0xff, 0xff, 0xff, 0xff]); + assert_eq!( + new_view.read_vec(contents_addr, 4), + [0xff, 0xff, 0xff, 0xff] + ); } #[test] -- cgit v1.3.1