revert: expect lint

Expect lint was causing issues with crates/docker builds, revert until fix is found
This commit is contained in:
Jack Wills
2024-09-07 21:25:14 +00:00
parent a7139d7776
commit 578ed9f085
8 changed files with 20 additions and 20 deletions
+5 -5
View File
@@ -364,7 +364,7 @@ pub fn chart(f: &mut Frame, area: Rect, app_data: &Arc<Mutex<AppData>>) {
.data(&mem.0)];
let cpu_stats = CpuStats::new(cpu.0.last().map_or(0.00, |f| f.1));
#[expect(clippy::cast_possible_truncation, clippy::cast_sign_loss)]
#[allow(clippy::cast_possible_truncation, clippy::cast_sign_loss)]
let mem_stats = ByteStats::new(mem.0.last().map_or(0, |f| f.1 as u64));
let cpu_chart = make_chart(cpu.2, "cpu", cpu_dataset, &cpu_stats, &cpu.1);
let mem_chart = make_chart(mem.2, "memory", mem_dataset, &mem_stats, &mem.1);
@@ -1065,7 +1065,7 @@ fn popup(text_lines: usize, text_width: usize, r: Rect, box_location: BoxLocatio
}
#[cfg(test)]
#[expect(clippy::unwrap_used)]
#[allow(clippy::unwrap_used)]
mod tests {
use std::{ops::RangeInclusive, sync::Arc};
@@ -2110,7 +2110,7 @@ mod tests {
// Charts panel //
// ************ //
#[expect(clippy::cast_precision_loss)]
#[allow(clippy::cast_precision_loss)]
// Add fixed data to the cpu & mem vecdeques
fn insert_chart_data(setup: &TuiTestSetup) {
for i in 1..=10 {
@@ -2834,7 +2834,7 @@ mod tests {
// ********** //
#[test]
#[expect(clippy::cognitive_complexity, clippy::too_many_lines)]
#[allow(clippy::cognitive_complexity, clippy::too_many_lines)]
/// Filter row is drawn correctly & colors are correct
/// Colours change when filter_by option is changed
fn test_draw_blocks_filter_row() {
@@ -3372,7 +3372,7 @@ mod tests {
}
#[test]
#[expect(clippy::too_many_lines)]
#[allow(clippy::too_many_lines)]
/// Check that the whole layout is drawn correctly
fn test_draw_blocks_whole_layout_with_filter() {
let (w, h) = (160, 30);
+1 -1
View File
@@ -58,7 +58,7 @@ pub enum DeleteButton {
No,
}
#[expect(unused)]
#[allow(unused)]
#[derive(Debug, Clone, Copy)]
pub enum BoxLocation {
TopLeft,