diff options
| author | Brandon Schaefer <brandon.schaefer@canonical.com> | 2013-08-12 11:35:24 -0700 |
|---|---|---|
| committer | Brandon Schaefer <brandon.schaefer@canonical.com> | 2013-08-12 11:35:24 -0700 |
| commit | 2aba89b8e0693a83ff28a4dac98072daeb7c470a (patch) | |
| tree | 893fcf711913918273ad0c874eb8261066624ca2 /tests | |
| parent | e08a978bbdb9680115dbf88530073c00f04d6f2d (diff) | |
* ibus-anthy has Ctrl+J as turning the input method on and off now. Though
Ctrl+J is also still listed as how to commit text, it is turning of the IM before doing so causing tests to fail. So instead of using Ctrl+J we will just use Enter. (bzr r3464.1.1)
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/autopilot/unity/tests/test_ibus.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/autopilot/unity/tests/test_ibus.py b/tests/autopilot/unity/tests/test_ibus.py index 7070cafb7..8f8267940 100644 --- a/tests/autopilot/unity/tests/test_ibus.py +++ b/tests/autopilot/unity/tests/test_ibus.py @@ -264,7 +264,6 @@ class IBusTestsAnthy(IBusWidgetScenariodTests): ('user', {'input': 'yu-za- ', 'result' : u'\u30e6\u30fc\u30b6\u30fc' }), ], [ - ('commit_j', {'commit_key': 'Ctrl+j'}), ('commit_enter', {'commit_key': 'Enter'}), ] ) @@ -327,7 +326,7 @@ class IBusTestsAnthyIgnore(IBusTests): self.activate_ibus(self.unity.dash.searchbar) self.keyboard.type("shisutemu ") self.keyboard.press_and_release("Tab") - self.keyboard.press_and_release("Ctrl+j") + self.keyboard.press_and_release("Enter") self.deactivate_ibus(self.unity.dash.searchbar) dash_search_string = self.unity.dash.search_string |
