comparison rust/hg-core/src/revlog/changelog.rs @ 51700:7f0cb9ee0534

Backout accidental publication of a large range of revisions I accidentally published 25e7f9dcad0f::bd1483fd7088, this is the inverse.
author Raphaël Gomès <rgomes@octobus.net>
date Tue, 23 Jul 2024 10:02:46 +0200
parents 918ceb5a3d25
children ec7171748350
comparison
equal deleted inserted replaced
51699:bd1483fd7088 51700:7f0cb9ee0534
711 (&b"\xF0\x9F\xA6\x80 non-ascii-key:"[..], "non-ASCII key"), 711 (&b"\xF0\x9F\xA6\x80 non-ascii-key:"[..], "non-ASCII key"),
712 ]; 712 ];
713 713
714 for (extra, msg) in test_cases { 714 for (extra, msg) in test_cases {
715 assert!( 715 assert!(
716 decode_extra(extra).is_err(), 716 decode_extra(&extra).is_err(),
717 "corrupt extra should have failed to parse: {}", 717 "corrupt extra should have failed to parse: {}",
718 msg 718 msg
719 ); 719 );
720 } 720 }
721 } 721 }