From ceae05cc4b1eea38916c4fc23e8ce809de7d0ebd Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 24 Sep 2019 19:42:24 +0200 Subject: [PATCH] tests: avoid deprecated GLib.IOChannel.add_watch() in "test-networkmanager-service.py" test_001 (__main__.TestNmcli) ... /tmp/NetworkManager/tools/test-networkmanager-service.py:2346: PyGIDeprecationWarning: add_watch is deprecated; use GLib.io_add_watch() instead id1 = GLib.IOChannel(0).add_watch(GLib.IOCondition.HUP, --- tools/test-networkmanager-service.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/test-networkmanager-service.py b/tools/test-networkmanager-service.py index c921aedef..fbf95b035 100755 --- a/tools/test-networkmanager-service.py +++ b/tools/test-networkmanager-service.py @@ -2343,8 +2343,10 @@ def main(): raise AssertionError("Failure to request D-Bus name org.freedesktop.NetworkManager") # Watch stdin; if it closes, assume our parent has crashed, and exit - id1 = GLib.IOChannel(0).add_watch(GLib.IOCondition.HUP, - lambda io, condition: gl.mainloop.quit() or True) + id1 = GLib.io_add_watch(GLib.IOChannel.unix_new(0), + GLib.PRIORITY_DEFAULT, + GLib.IO_HUP, + lambda io, condition: gl.mainloop.quit() or True) gl.mainloop.run()