1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: fix failing assertion in test
habluetooth 3.42.0 compatibility. Upstream already seems to have the fix,
but no release yet.
Author: Ananthu C V <weepingclown@debian.org>
Forwarded: not-needed
Last-Update: 2025-05-03
--- a/tests/test_models.py
+++ b/tests/test_models.py
@@ -91,2 +91,3 @@
"tx_power": -127,
+ "raw": None,
}
@@ -137,2 +138,3 @@
"tx_power": None,
+ "raw": None,
}
@@ -171,2 +173,3 @@
"tx_power": -127,
+ "raw": None,
}
@@ -231,2 +234,3 @@
"tx_power": None,
+ "raw": None,
}
|