diff options
| author | Iain Lane <iain@orangesquash.org.uk> | 2018-09-24 09:34:42 +0100 |
|---|---|---|
| committer | Iain Lane <iain@orangesquash.org.uk> | 2018-09-24 09:34:42 +0100 |
| commit | 5361ff2e31404e281e51d024263331c9ca27a660 (patch) | |
| tree | 146456308fb60980be8cf179d73b6995d4226c34 /debian/tests | |
| parent | 6263e338ab7c40dccb5b165cb7173f79852aed56 (diff) | |
debian/tests/nm: Add the required `gi.require_version()` calls - thanks to the autopkgtests for noticing this.
Diffstat (limited to 'debian/tests')
| -rwxr-xr-x | debian/tests/nm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/debian/tests/nm b/debian/tests/nm index e44728f2..a40be9e4 100755 --- a/debian/tests/nm +++ b/debian/tests/nm @@ -20,6 +20,10 @@ try: except ImportError: DBusTestCase = object # dummy so that the class declaration works +import gi + +gi.require_version('NetworkManager', '1.0') +gi.require_version('NMClient', '1.0') from gi.repository import NetworkManager, NMClient, GLib sys.path.append(os.path.dirname(__file__)) |