diff options
author | Daniel <kingdread@gmx.de> | 2020-10-10 12:41:25 +0200 |
---|---|---|
committer | Daniel <kingdread@gmx.de> | 2020-10-10 12:41:25 +0200 |
commit | 49a43bdf5c5de1ea662f6bfaf5318145fefd2816 (patch) | |
tree | bb62fadb6687c45554234a7d27b3c4c7691ba8c6 | |
parent | 5836c7d87f26f004cc4433ffd2c6a2f97f67050b (diff) | |
download | raidgrep-49a43bdf5c5de1ea662f6bfaf5318145fefd2816.tar.gz raidgrep-49a43bdf5c5de1ea662f6bfaf5318145fefd2816.tar.bz2 raidgrep-49a43bdf5c5de1ea662f6bfaf5318145fefd2816.zip |
fix testsv1.3.1
-rw-r--r-- | src/output/sorting.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/output/sorting.rs b/src/output/sorting.rs index 911a7df..2ed746a 100644 --- a/src/output/sorting.rs +++ b/src/output/sorting.rs @@ -135,7 +135,7 @@ mod tests { use super::*; use chrono::prelude::*; - use evtclib::Boss as B; + use evtclib::Encounter as E; #[test] fn test_parse_component() { @@ -175,7 +175,7 @@ mod tests { log_file: "".into(), time: Utc.ymd(2020, 4, 3).and_hms(12, 0, 0), duration, - boss: Some(B::Dhuum), + encounter: Some(E::VoiceInTheVoid), players: vec![], outcome: FightOutcome::Success, is_cm: false, @@ -184,7 +184,7 @@ mod tests { log_file: "".into(), time: Utc.ymd(2020, 4, 3).and_hms(13, 0, 0), duration, - boss: Some(B::Dhuum), + encounter: Some(E::VoiceInTheVoid), players: vec![], outcome: FightOutcome::Success, is_cm: false, @@ -193,7 +193,7 @@ mod tests { log_file: "".into(), time: Utc.ymd(2020, 4, 3).and_hms(11, 0, 0), duration, - boss: Some(B::Dhuum), + encounter: Some(E::VoiceInTheVoid), players: vec![], outcome: FightOutcome::Success, is_cm: false, @@ -202,7 +202,7 @@ mod tests { log_file: "".into(), time: Utc.ymd(2020, 4, 3).and_hms(11, 0, 0), duration, - boss: Some(B::Qadim), + encounter: Some(E::Qadim), players: vec![], outcome: FightOutcome::Success, is_cm: false, @@ -211,7 +211,7 @@ mod tests { log_file: "".into(), time: Utc.ymd(2020, 4, 3).and_hms(11, 0, 0), duration, - boss: Some(B::Dhuum), + encounter: Some(E::VoiceInTheVoid), players: vec![], outcome: FightOutcome::Success, is_cm: false, |