From aa2952ff3085761c951ad1e0a7a29871d3546a4a Mon Sep 17 00:00:00 2001 From: Marco De Pascale Date: Wed, 29 Oct 2025 13:43:45 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20testing=20code=20cov?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/test_qdmi.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/test_qdmi.cpp b/test/test_qdmi.cpp index 28524d6e..6822f4fc 100644 --- a/test/test_qdmi.cpp +++ b/test/test_qdmi.cpp @@ -1113,13 +1113,3 @@ TEST_P(QDMIImplementationTest, NeedsCalibration) { EXPECT_EQ(ret, QDMI_SUCCESS); EXPECT_EQ(needs_calibration, 0); } - -TEST_P(QDMIImplementationTest, QueryPulseSupportLevel) { - QDMI_Device_Pulse_Support_Level pulse_support_level = - QDMI_DEVICE_PULSE_SUPPORT_LEVEL_NONE; - const auto ret = QDMI_device_query_device_property( - device, QDMI_DEVICE_PROPERTY_PULSESUPPORT, - sizeof(QDMI_Device_Pulse_Support_Level), &pulse_support_level, nullptr); - EXPECT_EQ(ret, QDMI_SUCCESS); - EXPECT_EQ(pulse_support_level, QDMI_DEVICE_PULSE_SUPPORT_LEVEL_NONE); -}