Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
common tests
Signed-off-by: Mikhail Tagirov <[email protected]>
  • Loading branch information
wer1st committed Dec 11, 2023
commit 4da041b69d074174c5e9848293ac3c0d0344ae00
4 changes: 2 additions & 2 deletions common/src/primitives.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ mod tests {
);

// should not panic
serde_json::to_value(&asset_id).unwrap();
serde_json::to_value(asset_id).unwrap();
}

#[test]
Expand All @@ -1057,7 +1057,7 @@ mod tests {
assert_eq!(unwrapped, balance);

// should not panic
serde_json::to_value(&BalanceWrapper(balance)).unwrap();
serde_json::to_value(BalanceWrapper(balance)).unwrap();
}
}

Expand Down