Skip to content

Commit 4fc965c

Browse files
Copilotkennykerr
andcommitted
Fix code formatting issues
Co-authored-by: kennykerr <9845234+kennykerr@users.noreply.github.com>
1 parent e1d4336 commit 4fc965c

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

crates/tests/libs/registry/tests/volatile.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,7 @@ fn volatile() {
2121
assert_eq!(key.get_u64("test_value").unwrap(), 12345u64);
2222

2323
// Verify the key was created (can be opened without create)
24-
let read_key = CURRENT_USER
25-
.options()
26-
.read()
27-
.open(test_key)
28-
.unwrap();
24+
let read_key = CURRENT_USER.options().read().open(test_key).unwrap();
2925

3026
assert_eq!(read_key.get_u64("test_value").unwrap(), 12345u64);
3127

@@ -54,4 +50,4 @@ fn non_volatile_default() {
5450

5551
// Clean up
5652
_ = CURRENT_USER.remove_tree(test_key);
57-
}
53+
}

0 commit comments

Comments
 (0)