Skip to content

Commit

Permalink
Revert "What happens if we write fewer bytes before check"
Browse files Browse the repository at this point in the history
This reverts commit 8175eed.
  • Loading branch information
mulkieran committed May 6, 2024
1 parent 8175eed commit ee6f50a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/strat_engine/thinpool/thinpool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2643,7 +2643,7 @@ mod tests {
}
let mut bytes_written = Bytes(0);
// Write 100 * IEC::Mi
while bytes_written < Bytes::from(50 * IEC::Mi) {
while bytes_written < Bytes::from(100 * IEC::Mi) {
file.write_all(&[1; 4096]).unwrap();
bytes_written += Bytes(4096);
}
Expand Down

0 comments on commit ee6f50a

Please sign in to comment.