test fixes

This commit is contained in:
Robin Appelman 2022-05-12 22:46:44 +02:00
commit 4ec9516902
2 changed files with 3 additions and 3 deletions

View file

@ -177,7 +177,7 @@ impl ApiClient {
/// println!("{}: {}", demo.id, demo.name);
/// println!("players:");
///
/// for player in demo.players {
/// for player in demo.players.unwrap_or_default() {
/// println!("{}", player.user.name);
/// }
/// # Ok(())