Update tests for new `endOfGameResult` fields

pull/63/head
Mingwei Samuel 2024-02-16 15:57:44 -08:00
parent 886ed4032d
commit 4c9952b385
3 changed files with 7 additions and 4 deletions

View File

@ -11,10 +11,8 @@ use testutils::*;
const ROUTE: RegionalRoute = RegionalRoute::AMERICAS;
static MATCHES: &[&str] = &[
// New games with `match-v5.ParticipantDto.challenges` field.
"NA1_4209556127",
"NA1_4212715433",
"NA1_4265913704", // `match-v5.ParticipantDto.challenges.mejaisFullStackInTime`
"NA1_4924008147",
];
async_tests! {

View File

@ -52,7 +52,10 @@ async_tests! {
let featured_p = RIOT_API.spectator_v4().get_featured_games(ROUTE);
let featured = featured_p.await.map_err(|e| e.to_string())?;
rassert!(!featured.game_list.is_empty());
if featured.game_list.is_empty() {
eprintln!("Featured game list is empty!");
return Ok(());
}
// let summoner_name = &featured.game_list[0].participants[0].summoner_name;
// let summoner_p = RIOT_API.summoner_v4().get_by_summoner_name(ROUTE, summoner_name);

View File

@ -15,6 +15,8 @@ static TFT_MATCHES: &[&str] = &[
// https://github.com/MingweiSamuel/Riven/pull/62
// https://github.com/MingweiSamuel/riotapi-schema/pull/43
"EUW1_6786745342",
// 2024-02-16
"EUW1_6807630149",
];
async_tests! {