Deprecate testJoystick (#33539)

* Deprecate testJoystick

* fix
This commit is contained in:
Shane Smiskol
2024-09-11 13:20:07 -07:00
committed by GitHub
parent e951b7093f
commit b9dbefc491
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ class TestStreamSession:
tested_msgs = [
{"type": "customReservedRawData0", "data": "test"}, # primitive
{"type": "can", "data": [{"address": 0, "dat": "", "src": 0}]}, # list
{"type": "testJoystick", "data": {"axes": [0, 0], "buttons": [False]}}, # dict
{"type": "testJoystickDEPRECATED", "data": {"axes": [0, 0], "buttons": [False]}}, # dict
]
mocked_pubmaster = mocker.MagicMock(spec=messaging.PubMaster)