Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.81.0"
channel = "1.82.0"
profile = "default"
2 changes: 1 addition & 1 deletion upstairs/src/dummy_downstairs_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ async fn test_byte_fault_condition_offline() {
h.await.unwrap();

let ds = harness.guest.downstairs_state().await.unwrap();
if (i as usize + 1) * WRITE_SIZE < IO_OUTSTANDING_MAX_BYTES as usize {
if (i + 1) * WRITE_SIZE < IO_OUTSTANDING_MAX_BYTES as usize {
assert_eq!(ds[ClientId::new(0)], DsState::Offline);
assert_eq!(ds[ClientId::new(1)], DsState::Active);
assert_eq!(ds[ClientId::new(2)], DsState::Active);
Expand Down