summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ideasonboard.com>2022-05-27 17:44:31 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-05-27 22:03:41 +0300
commit7a0a464dd13e3c0c266267dfcae75f5f09434cbf (patch)
tree1c98868eb95602b140f8e7b091ba8744aaa314c9 /test
parent1698442aa8e3aed1fe0b2323dada6d5e1f2515a3 (diff)
py: Rename 'efd' to 'event_fd'
Perhaps it's better to have a more descriptive name here. I also considered just renaming 'efd' to 'fd', but 'event_fd' won. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'test')
-rwxr-xr-xtest/py/unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/unittests.py b/test/py/unittests.py
index 8c445bc9..426efb06 100755
--- a/test/py/unittests.py
+++ b/test/py/unittests.py
@@ -269,7 +269,7 @@ class SimpleCaptureMethods(CameraTesterBase):
gc.collect()
sel = selectors.DefaultSelector()
- sel.register(cm.efd, selectors.EVENT_READ)
+ sel.register(cm.event_fd, selectors.EVENT_READ)
reqs = []