refactor: Update interface name from 'picontrol' to 'PiControl'

Renamed all occurrences of 'picontrol' to 'PiControl' in the D-Bus
interface definitions, method calls, and test cases for consistency and
adherence to naming conventions. This ensures uniformity across the
codebase and resolves potential naming-related issues.
This commit is contained in:
2025-04-20 12:19:41 +02:00
parent 157b7bd118
commit 865d2ca7a9
3 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ class TestObjectPicontrol(TestBusProvider):
def test_reset_driver(self):
simple_call(
"ResetDriver",
interface=extend_interface("picontrol"),
interface=extend_interface("PiControl"),
bus_type=BusType.SESSION,
)
ioctl_call = IOCTL_QUEUE.get(timeout=2.0)
@@ -37,7 +37,7 @@ class TestObjectPicontrol(TestBusProvider):
result = await_signal(
"NotifyDriverReset",
timeout,
extend_interface("picontrol"),
extend_interface("PiControl"),
bus_type=BusType.SESSION,
)
self.assertTrue(result)