Searched refs:patch_body (Results 1 – 1 of 1) sorted by relevance
327 let mut patch_body = ProtoChip::new(); in test_chip_patch() localVariable328 patch_body.manufacturer = "patched_manufacturer".to_string(); in test_chip_patch()329 patch_body.product_name = "patched_product_name".to_string(); in test_chip_patch()332 assert!(chip.patch(&patch_body).is_ok()); in test_chip_patch()335 assert_eq!(patch_body.manufacturer, chip.manufacturer.read().unwrap().to_string()); in test_chip_patch()336 assert_eq!(patch_body.product_name, chip.product_name.read().unwrap().to_string()); in test_chip_patch()