diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-07-12 08:43:44 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-07-12 08:43:48 +0900 |
commit | 7447e4c02524c21cd0c3160a427dbe8cff83a7e1 (patch) | |
tree | dda4cab615d3dd6c09bbb776d3b5b7930a6fe932 /tests/test_gio.py | |
parent | 34b73082a6fa173f26b5d519393c4c75eef5d390 (diff) | |
download | pygobject2-7447e4c02524c21cd0c3160a427dbe8cff83a7e1.tar.gz pygobject2-7447e4c02524c21cd0c3160a427dbe8cff83a7e1.tar.bz2 pygobject2-7447e4c02524c21cd0c3160a427dbe8cff83a7e1.zip |
Imported Upstream version 3.17.90
Change-Id: Iad22098f78874f80422829788d71b474602eda4e
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'tests/test_gio.py')
-rw-r--r-- | tests/test_gio.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_gio.py b/tests/test_gio.py index 0c773bc..05ab008 100644 --- a/tests/test_gio.py +++ b/tests/test_gio.py @@ -6,6 +6,8 @@ import unittest import gi.overrides from gi.repository import GLib, Gio +from helper import ignore_gi_deprecation_warnings + class TestGio(unittest.TestCase): def test_file_enumerator(self): @@ -120,6 +122,7 @@ class TestGSettings(unittest.TestCase): self.assertEqual(bool(empty), True) self.assertEqual(empty.keys(), []) + @ignore_gi_deprecation_warnings def test_change_event(self): changed_log = [] change_event_log = [] |