···579579580580 assert!(
581581 reads_with_index < reads_without_index,
582582- "read with index ({reads_with_index} reads) should require fewer reads than without ({reads_without_index} reads)"
582582+ "indexed read took {reads_with_index} reads but unindexed took only {reads_without_index}"
583583 );
584584}
585585···654654 assert_eq!(
655655 event_writer.synced_seq(),
656656 EventSequence::BEFORE_ALL,
657657- "crash between blockstore sync and eventlog sync must not persist the event (blocks exist, event does not = orphan, not inconsistency)"
657657+ "crash between blockstore sync and eventlog sync must leave blocks orphaned rather than persist the event"
658658 );
659659660660 drop(event_writer);
···160160 .collect();
161161 assert!(
162162 all_cids.contains(&cid_a),
163163- "cid_a should be collectible (epoch advanced by subsequent commit)"
163163+ "cid_a should be collectible after subsequent commit advanced the epoch"
164164 );
165165 });
166166}