@@ -756,7 +756,7 @@ mod tests {
756756 . block_upload_started
757757 . load( std:: sync:: atomic:: Ordering :: SeqCst ) ,
758758 0 ,
759- "raw block uploads should stay idle when certified uploads succeed" ,
759+ "block uploads should stay idle when certified uploads succeed" ,
760760 ) ;
761761 } ) ;
762762 }
@@ -796,7 +796,7 @@ mod tests {
796796 link_validators ( & mut oracle, & participants, link, None ) . await ;
797797
798798 // Reject certificate uploads so the only way blocks can reach the
799- // indexer is through the durable raw block consumer.
799+ // indexer is through the durable block consumer.
800800
801801 let indexer = mocks:: Client :: new ( ) . with_fail_certs ( ) ;
802802
@@ -824,7 +824,7 @@ mod tests {
824824 assert ! ( !indexer
825825 . finalization_seen
826826 . load( std:: sync:: atomic:: Ordering :: Relaxed ) ) ;
827- // The durable consumer should compensate by uploading raw blocks.
827+ // The durable consumer should compensate by uploading blocks.
828828 for _ in 0 ..10 {
829829 if indexer
830830 . block_upload_completed
@@ -878,7 +878,7 @@ mod tests {
878878
879879 // Hold the first few certificate uploads open so finalized queue
880880 // rows exist while a certificate path for the same digest is still
881- // in flight. The raw consumer should wait instead of racing them.
881+ // in flight. The block consumer should wait instead of racing them.
882882 let mut cert_upload_senders = Vec :: new ( ) ;
883883 let mut cert_upload_waiters = Vec :: new ( ) ;
884884 for _ in 0 ..8 {
@@ -932,11 +932,11 @@ mod tests {
932932 . block_upload_started
933933 . load( std:: sync:: atomic:: Ordering :: SeqCst ) ,
934934 0 ,
935- "raw block uploads should wait while certificate uploads are still in flight" ,
935+ "block uploads should wait while certificate uploads are still in flight" ,
936936 ) ;
937937
938938 // Release the blocked certificate uploads and confirm the
939- // certificate-bearing paths finish without the raw consumer ever
939+ // certificate-bearing paths finish without the block consumer ever
940940 // needing to step in.
941941 drop ( cert_upload_senders) ;
942942 for _ in 0 ..10 {
@@ -957,7 +957,7 @@ mod tests {
957957 . block_upload_started
958958 . load( std:: sync:: atomic:: Ordering :: SeqCst ) ,
959959 0 ,
960- "raw block uploads should remain idle when certificate uploads eventually succeed" ,
960+ "block uploads should remain idle when certificate uploads eventually succeed" ,
961961 ) ;
962962 } ) ;
963963 }
@@ -995,7 +995,7 @@ mod tests {
995995 } ;
996996 link_validators ( & mut oracle, & participants, link, None ) . await ;
997997
998- // Hold the first two raw block uploads open so we can observe the
998+ // Hold the first two block uploads open so we can observe the
999999 // consumer's parallelism before any upload completes.
10001000 let ( release_first, wait_first) = oneshot:: channel ( ) ;
10011001 let ( release_second, wait_second) = oneshot:: channel ( ) ;
@@ -1135,8 +1135,8 @@ mod tests {
11351135 blocked_waiters. push ( receiver) ;
11361136 }
11371137
1138- // Use one mock that keeps raw uploads blocked during the first run, and
1139- // a second mock that still rejects cert uploads but lets replayed raw
1138+ // Use one mock that keeps block uploads blocked during the first run, and
1139+ // a second mock that still rejects cert uploads but lets replayed block
11401140 // uploads complete during recovery.
11411141 let blocked_indexer = mocks:: Client :: new ( )
11421142 . with_fail_certs ( )
@@ -1290,7 +1290,7 @@ mod tests {
12901290 let mut registrations = register_validators ( & mut oracle, & participants) . await ;
12911291 let participants_set = Set :: from_iter_dedup ( participants. clone ( ) ) ;
12921292
1293- // Do not relink validators on restart. Any successful raw block
1293+ // Do not relink validators on restart. Any successful block
12941294 // uploads in this run must therefore come from replaying the
12951295 // durable queue and restored marshal state.
12961296 for ( signer, scheme) in private_keys. into_iter ( ) . zip ( schemes) {
0 commit comments