~ubuntu-branches/ubuntu/vivid/ubuntu-html5-theme/vivid

« back to all changes in this revision

Viewing changes to tests/autopilot/ubuntu_html5_ui_toolkit/tests/__init__.py

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Ubuntu daily release, Alexandre Abreu
  • Date: 2015-01-22 14:01:08 UTC
  • mfrom: (1.1.29)
  • Revision ID: package-import@ubuntu.com-20150122140108-voqti1liezm8zf6n
Tags: 0.1.2+15.04.20150122-0ubuntu1
[ Ubuntu daily release ]
* New rebuild forced

[ Alexandre Abreu ]
* Port AP tests to python3 (blocking all other landings for fixes on
  the project) (LP: #1369655)
* Merge lp:~ya-bo-ng/ubuntu-html5-theme/popover-update & fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
200
200
    def eval_expression_in_page_unsafe(self, expr):
201
201
        webview = self.get_webviewContainer()
202
202
        prev_emissions = self.watcher.num_emissions
203
 
        result = webview.slots.evalInPageUnsafe(expr)
 
203
        webview.slots.evalInPageUnsafe(expr)
204
204
        self.assertThat(
205
205
            lambda: self.watcher.num_emissions,
206
206
            Eventually(GreaterThan(prev_emissions)))