mirror of
https://github.com/Steffo99/patched-porobot.git
synced 2024-12-22 17:44:22 +00:00
In tests, reference to the crate with the crate
keyword
This commit is contained in:
parent
7ecc0242a3
commit
48fb2b275e
1 changed files with 3 additions and 3 deletions
|
@ -484,9 +484,9 @@ pub type DeckEncodingResult<T> = Result<T, DeckEncodingError>;
|
|||
#[macro_export]
|
||||
macro_rules! deck {
|
||||
[$($cd:literal: $qty:literal),* $(,)?] => {
|
||||
patched_porobot::data::deckcode::deck::Deck {
|
||||
crate::data::deckcode::deck::Deck {
|
||||
contents: std::collections::HashMap::from([
|
||||
$((patched_porobot::data::setbundle::code::CardCode { full: $cd.to_string() }, $qty),)*
|
||||
$((crate::data::setbundle::code::CardCode { full: $cd.to_string() }, $qty),)*
|
||||
])
|
||||
}
|
||||
}
|
||||
|
@ -539,7 +539,7 @@ mod tests {
|
|||
( $id:ident, $deck:expr ) => {
|
||||
#[test]
|
||||
fn $id() {
|
||||
use patched_porobot::data::deckcode::deck::Deck;
|
||||
use crate::data::deckcode::deck::Deck;
|
||||
let deck1 = $deck;
|
||||
let code = deck1
|
||||
.to_code(DeckCodeFormat::F1)
|
||||
|
|
Loading…
Reference in a new issue