From c4584b3d7d9dd6c87118ff6010aa087d2ea9c781 Mon Sep 17 00:00:00 2001 From: Caila Marashaj <98041399+caila-marashaj@users.noreply.github.com> Date: Thu, 14 Jul 2022 14:12:52 -0400 Subject: [PATCH] changed expected pressure reading values (#11134) --- hardware/tests/firmware_integration/test_sensors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hardware/tests/firmware_integration/test_sensors.py b/hardware/tests/firmware_integration/test_sensors.py index 3137e5f9a45..426ca62cf78 100644 --- a/hardware/tests/firmware_integration/test_sensors.py +++ b/hardware/tests/firmware_integration/test_sensors.py @@ -74,7 +74,7 @@ async def test_write_to_sensors( [SensorType.capacitive, 0.46], [SensorType.humidity, 83.92], [SensorType.temperature, 22.44], - [SensorType.pressure, 5.88], + [SensorType.pressure, 0.02], ], ) @pytest.mark.requires_emulator @@ -107,7 +107,7 @@ async def test_read_from_sensors( argnames=["sensor_type", "expected_value"], argvalues=[ [SensorType.capacitive, 0.46], - [SensorType.pressure, 5.88], + [SensorType.pressure, 0.02], ], ) @pytest.mark.requires_emulator