From 9b08e058b7c9b165b5006039099bed0976a8d021 Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Sat, 16 Sep 2023 18:10:31 -0700 Subject: [PATCH] update tft bug test, Riot will make the breaking fix on Oct 3 https://twitter.com/RiotGamesDevRel/status/1701723426178650191 --- riven/tests/tests_na.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riven/tests/tests_na.rs b/riven/tests/tests_na.rs index 9c1f68f..7a4a816 100644 --- a/riven/tests/tests_na.rs +++ b/riven/tests/tests_na.rs @@ -68,7 +68,7 @@ async_tests! { // 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: &str = "jessixa"; + const SUMMONER_NAME: &str = "Bobo TFT"; 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);