update test error messages

pull/73/head
Mingwei Samuel 2024-05-11 23:33:54 -07:00
parent 0d04dcc907
commit 9d481f0c70
1 changed files with 3 additions and 3 deletions

View File

@ -165,7 +165,7 @@ pub async fn tft_match_v1_get(
let p = riot_api().tft_match_v1().get_match(route, matche);
let m = p
.await
.map_err(|e| format!("Failed to get match {}: {:?}", matche, e))?
.map_err(|e| format!("Failed to get tft match {}: {:?}", matche, e))?
.ok_or(format!("Match {} not found.", matche))?;
if matche != &*m.metadata.match_id {
@ -265,7 +265,7 @@ pub async fn match_v5_get_timeline(
let p = riot_api().match_v5().get_timeline(route, matche);
let m = p
.await
.map_err(|e| format!("Failed to get match {}: {:?}", matche, e))?
.map_err(|e| format!("Failed to get match timeline {}: {:?}", matche, e))?
.ok_or(format!("Match {} not found.", matche))?;
if matche != &*m.metadata.match_id {
return Err(format!(
@ -456,7 +456,7 @@ pub async fn val_match_v1_get(
let p = riot_api().val_match_v1().get_match(route, matche);
let m = p
.await
.map_err(|e| format!("Failed to get match {}: {:?}", matche, e))?
.map_err(|e| format!("Failed to get val match {}: {:?}", matche, e))?
.ok_or(format!("Match {} not found.", matche))?;
// TODO(mingwei): Check the match a bit.