···304304 brep_after.ino(),
305305 "a present brep blob keeps its inode because the rewrite is skipped"
306306 );
307307- assert_eq!(labels_meta.ino(), labels_after.ino(), "a present sidecar is not rewritten");
307307+ assert_eq!(
308308+ labels_meta.ino(),
309309+ labels_after.ino(),
310310+ "a present sidecar is not rewritten"
311311+ );
308312 }
309313310314 #[test]
···315319 let Ok(_hash) = write_solid(&folder, &solid) else {
316320 panic!("write solid");
317321 };
318318- let Ok(gitattributes) = std::fs::read_to_string(folder.path().join(".gitattributes")) else {
322322+ let Ok(gitattributes) = std::fs::read_to_string(folder.path().join(".gitattributes"))
323323+ else {
319324 panic!(".gitattributes must exist so .brep/.labels are declared text eol=lf");
320325 };
321326 assert!(gitattributes.contains("*.brep text eol=lf"));
+12-4
crates/bone-document/src/io/tess.rs
···142142143143 fn cylinder() -> BrepSolid {
144144 let mut entities: SlotMap<SketchEntityId, ()> = SlotMap::with_key();
145145- let Ok(disk) = Circle2::new(Point2::from_mm(0.0, 0.0), Length::new::<millimeter>(5.0), TOL)
146146- else {
145145+ let Ok(disk) = Circle2::new(
146146+ Point2::from_mm(0.0, 0.0),
147147+ Length::new::<millimeter>(5.0),
148148+ TOL,
149149+ ) else {
147150 panic!("positive radius");
148151 };
149152 solid(
···253256 };
254257255258 let Ok(None) = read_tessellation(&folder, hash, chord, angle) else {
256256- panic!("a reproducible-from-source cache entry that no longer parses must read as a miss");
259259+ panic!(
260260+ "a reproducible-from-source cache entry that no longer parses must read as a miss"
261261+ );
257262 };
258263 assert!(
259264 !path.exists(),
···298303 else {
299304 panic!("read fine");
300305 };
301301- assert_eq!(coarse, restored_coarse, "coarse tier survives the fine write");
306306+ assert_eq!(
307307+ coarse, restored_coarse,
308308+ "coarse tier survives the fine write"
309309+ );
302310 assert_eq!(fine, restored_fine);
303311 }
304312