fix: remove display name from get_info()

Display name is rarely needed for debugging,
so there is no need to include it in the logs.
Display name is even already listed in `skip_from_get_info`,
but the test only allowed the values to be skipped
without checking that they are always skipped.
This commit is contained in:
link2xt
2025-06-25 12:50:04 +00:00
committed by l
parent a40337f4e0
commit 7ac04d0204
2 changed files with 7 additions and 3 deletions

View File

@@ -310,6 +310,13 @@ async fn test_get_info_completeness() {
"'{key}' missing in get_info() output"
);
}
if skip_from_get_info.contains(&&*key) {
assert!(
!info.contains_key(&*key),
"'{key}' should not be in get_info() output"
);
}
}
}