~sethj/ubuntu/wily/unity/fix-for-1445595

« back to all changes in this revision

Viewing changes to tests/autopilot/unity/tests/test_dash.py

  • Committer: Daniel van Vugt
  • Date: 2012-10-11 01:44:15 UTC
  • mfrom: (2826 trunk)
  • mto: This revision was merged to the branch mainline in revision 2847.
  • Revision ID: daniel.van.vugt@canonical.com-20121011014415-jvudq1d7bn1z268j
Merge latest lp:unity and fix a conflict

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
        self.dash.reveal_application_lens()
176
176
        self.keyboard.press_and_release('Multi_key')
177
177
        self.keyboard.type("^o")
178
 
        self.assertSearchText("ô")
 
178
        self.assertSearchText(u'\xf4')
179
179
 
180
180
    def test_multi_key_copyright(self):
181
181
        """Pressing the sequences 'Multi_key' + 'c' + 'o' must produce '©'."""
182
182
        self.dash.reveal_application_lens()
183
183
        self.keyboard.press_and_release('Multi_key')
184
184
        self.keyboard.type("oc")
185
 
        self.assertSearchText("©")
 
185
        self.assertSearchText(u'\xa9')
186
186
 
187
187
    def test_multi_key_delete(self):
188
188
        """Pressing 'Multi_key' must not get stuck looking for a sequence."""