Skip to content

Commit 62eb64a

Browse files
committed
Undo unnecessary type annotation
1 parent e15a624 commit 62eb64a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/vm/src/cache.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -999,8 +999,7 @@ mod tests {
999999
#[test]
10001000
fn get_instance_recompiles_module() {
10011001
let options = make_testing_options();
1002-
let cache: Cache<MockApi, MockStorage, MockQuerier> =
1003-
unsafe { Cache::new(options.clone()).unwrap() };
1002+
let cache = unsafe { Cache::new(options.clone()).unwrap() };
10041003
let checksum = cache.store_code(HACKATOM, true, true).unwrap();
10051004

10061005
// Remove compiled module from disk

0 commit comments

Comments
 (0)