From 6b27551b8094f5dbd9cf5f9f1fbf3ce04e0cc7fc Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Mon, 02 Oct 2023 16:32:55 +0000 Subject: [PATCH] fix: unit tests --- --- a/runtime/tests/src/tests.rs +++ b/runtime/tests/src/tests.rs @@ -168,6 +168,7 @@ fn get_token_properties(collection_id: CollectionId, token_id: TokenId) -> Vec { >::token_properties((collection_id, token_id)) + .unwrap_or_default() .into_iter() .map(|(key, value)| Property { key, value }) .collect() -- gitstuff