davemds pushed a commit to branch master.

http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=e2edab7b1cfdc77cd546752af3021bbc05a4e848

commit e2edab7b1cfdc77cd546752af3021bbc05a4e848
Author: Dave Andreoli <d...@gurumeditation.it>
Date:   Mon Aug 1 20:05:04 2016 +0200

    tests: 2 small fixes
    
    * ElmWeb external test skipped for the moment.
    * Decorators test fixed by adding the new "edje,language,none" signal ti 
the list of expected.
---
 tests/edje/test_03_external.py   | 1 +
 tests/edje/test_05_decorators.py | 7 ++++---
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/tests/edje/test_03_external.py b/tests/edje/test_03_external.py
index ad52bb7..d3f7521 100644
--- a/tests/edje/test_03_external.py
+++ b/tests/edje/test_03_external.py
@@ -360,6 +360,7 @@ class TestElementaryExternal(unittest.TestCase):
 
         # TODO test params
 
+    @unittest.skip("Elm Web not maintained atm")
     def testExternalWeb(self):
         elm_web = self.theme.part_external_object_get("ext_elm_web")
         self.assertIsInstance(elm_web, Web)
diff --git a/tests/edje/test_05_decorators.py b/tests/edje/test_05_decorators.py
index ae27a10..eef6aa9 100644
--- a/tests/edje/test_05_decorators.py
+++ b/tests/edje/test_05_decorators.py
@@ -12,8 +12,9 @@ theme_path = os.path.dirname(os.path.abspath(__file__))
 theme_file = os.path.join(theme_path, "theme.edj")
 
 
-expected_signals = ["edje,state,ltr", "load", "edje,state,ltr", "resize",
-                    "cursor,changed", "changed", "emit,message", 
"emit,message"]
+expected_signals = ["edje,language,none", "edje,state,ltr", "load",
+                    "edje,state,ltr", "resize", "cursor,changed", "changed",
+                    "emit,message", "emit,message"]
 expected_signals2 = ["load", "resize"]
 expected_messages = [33, 33]
 expected_text_parts = ["label", "label"]
@@ -31,7 +32,7 @@ class MyEdje(Edje):
     @edje.on_signal("load", "*")
     @edje.on_signal("resize", "*")
     def cb_signal_load_resize(self, emission, source):
-         expected_signals2.remove(emission)
+        expected_signals2.remove(emission)
 
     @edje.message_handler
     def message_handler(self, msg):

-- 


Reply via email to