Skip to content

Commit

Permalink
Fix storage test
Browse files Browse the repository at this point in the history
  • Loading branch information
ligustah committed Apr 3, 2024
1 parent d6132c5 commit 6cfc3ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ mod test {
let premint = PremintTypes::ZoraV2(Default::default());

store.store(premint.clone()).await.unwrap();
let retrieved = store.get_for_id(premint.metadata().id).await.unwrap();
let retrieved = store.get_for_id(premint.guid()).await.unwrap();
assert_eq!(premint, retrieved);
}

Expand Down

0 comments on commit 6cfc3ec

Please sign in to comment.