()
| 327 | |
| 328 | #[test] |
| 329 | fn test_change_to_apply_clone() { |
| 330 | let cta = ChangeToApply::new(NodeId::new(1), test_hash()); |
| 331 | let cloned = cta.clone(); |
| 332 | |
| 333 | assert_eq!(cta.change_id, cloned.change_id); |
| 334 | assert_eq!(cta.change_hash, cloned.change_hash); |
| 335 | } |
| 336 | |
| 337 | #[test] |
| 338 | fn test_change_to_apply_debug() { |