From 0d7a287249792c0c58aa8e566f65a6127497647a Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Sat, 8 Feb 2025 03:20:25 +0530 Subject: [PATCH] feat: Remove useless test --- src/ddc.rs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/ddc.rs b/src/ddc.rs index 95f72dd..f7065eb 100644 --- a/src/ddc.rs +++ b/src/ddc.rs @@ -185,19 +185,6 @@ pub struct Backlight { pub max: u16, } -#[test] -fn test_input() { - let list = DisplayList::probe(true).unwrap(); - for dinfo in list.iter() { - tracing::info!("Found display: {}", dinfo.model()); - let display = dinfo.open().unwrap(); - dbg!(dinfo); - dbg!(&display); - let input = display.input().unwrap(); - dbg!(input); - } -} - #[derive(Debug, Copy, Clone, PartialEq, Eq)] pub enum IOPath { I2C(i32),