Private
Public Access
1
0

style: fix rustfmt formatting for CI

This commit is contained in:
2026-05-18 23:54:15 +00:00
parent b6809dc935
commit f3fb84927a
4 changed files with 14 additions and 7 deletions

View File

@ -203,8 +203,8 @@ fn test_enrollment_hostname_field_serializes() {
os_details: serde_json::json!({"name": "Test"}),
hostname: Some("host".to_string()),
};
let json_with = serde_json::to_string(&request_with_hostname)
.expect("Should serialize with hostname");
let json_with =
serde_json::to_string(&request_with_hostname).expect("Should serialize with hostname");
assert!(
json_with.contains("\"hostname\""),
"hostname field should be present in JSON when Some"