Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
diondokter committed Dec 13, 2024
1 parent b6f7da7 commit 0e19093
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1447,7 +1447,7 @@ mod tests {
&mut flash,
FLASH_RANGE,
&mut cache::NoCache::new(),
&[0; 1024 - 4 * 2 - 8],
&AlignedBuf([0; 1024 - 4 * 2 - 8]),
false,
)
.await
Expand All @@ -1458,7 +1458,7 @@ mod tests {
&mut flash,
FLASH_RANGE,
&mut cache::NoCache::new(),
&[0; 1024 - 4 * 2 - 8 + 1],
&AlignedBuf([0; 1024 - 4 * 2 - 8 + 1]),
false,
)
.await,
Expand Down

0 comments on commit 0e19093

Please sign in to comment.