Skip to content

Commit 3b5213d

Browse files
committed
feature: Add more APIs to L0 Sysman python binding
Related-To: NEO-18602 Add following apis to python: 1. zesFrequencyGetProperties 2. zesPowerGetProperties 3. zesPowerGetUsage Signed-off-by: Aviral Nigam <aviral.nigam@intel.com>
1 parent 84a492b commit 3b5213d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

bindings/sysman/python/test/unit_tests/test_frequency.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,9 @@ def mock_get_properties(frequency_handle, properties_ptr):
122122
self.assertEqual(freq_properties.onSubdevice, mock_on_subdevice)
123123
self.assertEqual(freq_properties.subdeviceId, mock_subdevice_id)
124124
self.assertEqual(freq_properties.canControl, mock_can_control)
125-
self.assertEqual(freq_properties.isThrottleEventSupported, mock_throttle_event_supported)
125+
self.assertEqual(
126+
freq_properties.isThrottleEventSupported, mock_throttle_event_supported
127+
)
126128
self.assertEqual(freq_properties.min, mock_min)
127129
self.assertEqual(freq_properties.max, mock_max)
128130
mock_get_func.assert_called_with("zesFrequencyGetProperties")

0 commit comments

Comments
 (0)