Skip to content

Commit ba8d469

Browse files
committed
fix: not cbor
1 parent 77843d9 commit ba8d469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fvm/src/blockstore/buffered.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ mod tests {
357357
mem.get_cbor::<(Cid, u8)>(&root_cid).unwrap(),
358358
Some((obj_cid, 1)),
359359
);
360-
assert_eq!(buf_store.get_cbor::<u8>(&identity_cid).unwrap(), None);
360+
assert_eq!(buf_store.get(&identity_cid).unwrap(), None);
361361
assert_eq!(buf_store.get(&unsealed_comm_cid).unwrap(), None);
362362
assert_eq!(buf_store.get(&sealed_comm_cid).unwrap(), None);
363363
assert_eq!(mem.get_cbor::<u8>(&unconnected).unwrap(), None);

0 commit comments

Comments
 (0)