forked from mirror/Riven
Fix tft doubleup test again
parent
a11b6874f6
commit
129002bf23
|
@ -51,7 +51,8 @@ async_tests!{
|
||||||
// TO TEST THIS BUG: https://github.com/RiotGames/developer-relations/issues/572.
|
// TO TEST THIS BUG: https://github.com/RiotGames/developer-relations/issues/572.
|
||||||
// summoner must have double-up rank.
|
// summoner must have double-up rank.
|
||||||
league_getforsummoner_tftbug: async {
|
league_getforsummoner_tftbug: async {
|
||||||
const SUMMONER_NAME: &'static str = "rebocca";
|
// TODO(mingwei): get summoner from leaderboard to avoid updating this all the time.
|
||||||
|
const SUMMONER_NAME: &'static str = "VX 18549996114";
|
||||||
let summoner_fut = RIOT_API.summoner_v4().get_by_summoner_name(ROUTE, SUMMONER_NAME);
|
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 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);
|
let league_fut = RIOT_API.league_v4().get_league_entries_for_summoner(ROUTE, &*summoner.id);
|
||||||
|
|
Loading…
Reference in New Issue