diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2019-03-08 16:33:05 +0100 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2019-03-08 16:38:46 +0100 |
commit | 632bd45825e7c63f09f25d6585404d011ff1994a (patch) | |
tree | 55c884b5045627dbc2947ca8ffef760f97e87f88 /src/scripts | |
parent | cf200a7d28aada7fff7d01fe3e353bf8359addc0 (diff) |
efl.loop_timer: rename all methods/properties/events
Summary:
avoid potential future conflict by not using conflict-able names
ref T7731
Reviewers: segfaultxavi
Reviewed By: segfaultxavi
Subscribers: cedric, #reviewers, #committers
Tags: #efl_api
Maniphest Tasks: T7731
Differential Revision: https://phab.enlightenment.org/D8256
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/pyolian/test_eolian.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/pyolian/test_eolian.py b/src/scripts/pyolian/test_eolian.py index 2a30cbeefe..990fcfc6c9 100755 --- a/src/scripts/pyolian/test_eolian.py +++ b/src/scripts/pyolian/test_eolian.py | |||
@@ -413,7 +413,7 @@ class TestEolianEvent(unittest.TestCase): | |||
413 | ev = cls.event_by_name_get('tick') | 413 | ev = cls.event_by_name_get('tick') |
414 | self.assertIsInstance(ev, eolian.Event) | 414 | self.assertIsInstance(ev, eolian.Event) |
415 | self.assertEqual(ev.name, 'tick') | 415 | self.assertEqual(ev.name, 'tick') |
416 | self.assertEqual(ev.c_name, 'EFL_LOOP_TIMER_EVENT_TICK') | 416 | self.assertEqual(ev.c_name, 'EFL_LOOP_TIMER_EVENT_TIMER_TICK') |
417 | self.assertIsNone(ev.type) # TODO is this correct | 417 | self.assertIsNone(ev.type) # TODO is this correct |
418 | self.assertIsInstance(ev.documentation, eolian.Documentation) | 418 | self.assertIsInstance(ev.documentation, eolian.Documentation) |
419 | self.assertEqual(ev.scope, eolian.Eolian_Object_Scope.PUBLIC) | 419 | self.assertEqual(ev.scope, eolian.Eolian_Object_Scope.PUBLIC) |