From 603de367c0b02619a81f966759ed59a6e1d044d3 Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Tue, 31 Mar 2020 11:50:21 -0700 Subject: [PATCH] Comment out LOR test due to special API key required --- tests/tests_na.rs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/tests_na.rs b/tests/tests_na.rs index 6d952d2..a95e34c 100644 --- a/tests/tests_na.rs +++ b/tests/tests_na.rs @@ -73,11 +73,12 @@ async_tests!{ rassert!(!m.participants.is_empty(), "Match should have participants."); Ok(()) }, - // LOR - lor_ranked_get_leaderboards: async { - let future = RIOT_API.lor_ranked_v1().get_leaderboards(Region::AMERICAS); - let _leaderboard = future.await.map_err(|e| e.to_string())?; - Ok(()) - }, + // Commented out, requires special API key. + // // LOR + // lor_ranked_get_leaderboards: async { + // let future = RIOT_API.lor_ranked_v1().get_leaderboards(Region::AMERICAS); + // let _leaderboard = future.await.map_err(|e| e.to_string())?; + // Ok(()) + // }, } }