From fa3e7a4babab2f6d1713e3de67b092cd82c33238 Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Sat, 1 Apr 2023 21:47:05 -0700 Subject: [PATCH] Update `league_getforsummoner_tftbug` test --- riven/tests/tests_na.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/riven/tests/tests_na.rs b/riven/tests/tests_na.rs index 2650059..43cf91b 100644 --- a/riven/tests/tests_na.rs +++ b/riven/tests/tests_na.rs @@ -49,10 +49,11 @@ async_tests!{ }, // TO TEST THIS BUG: https://github.com/RiotGames/developer-relations/issues/572. + // https://lolchess.gg/leaderboards?mode=doubleup®ion=na // summoner must have double-up rank. league_getforsummoner_tftbug: async { // TODO(mingwei): get summoner from leaderboard to avoid updating this all the time. - const SUMMONER_NAME: &'static str = "VX 18549996114"; + const SUMMONER_NAME: &'static str = "Vincentscc"; let summoner_fut = RIOT_API.summoner_v4().get_by_summoner_name(ROUTE, SUMMONER_NAME); let summoner = summoner_fut.await.map_err(|e| e.to_string())?.ok_or_else(|| format!("Failed to get \"{}\"", SUMMONER_NAME))?; let league_fut = RIOT_API.league_v4().get_league_entries_for_summoner(ROUTE, &*summoner.id);