Activity log for bug #1250113

Date Who What changed Old value New value Message
2013-11-11 15:03:37 Víctor R. Ruiz bug added bug
2013-11-11 15:03:51 Víctor R. Ruiz description In tests/autopilot/webapps_click_packages_autopilot/tests/__init__.py this method is defined: def update_autopilot_proxy_for_pid(self, pid): self.app_proxy = None for x in range(10): self.app_proxy = get_proxy_object_for_existing_process(pid=int(pid)) if not self.app_proxy is None: break sleep(1000) self.assertThat(x, NotEquals(9)) self.assertThat(self.app_proxy, NotEquals(None)) Line 54 sleep(1000) is using JavaScript units (miliseconds), instead of Python units (seconds). Maybe this function could be rewritten using Eventually. In tests/autopilot/webapps_click_packages_autopilot/tests/__init__.py this method is defined:     def update_autopilot_proxy_for_pid(self, pid):         self.app_proxy = None         for x in range(10):             self.app_proxy = get_proxy_object_for_existing_process(pid=int(pid))             if not self.app_proxy is None:                 break             sleep(1000)             self.assertThat(x, NotEquals(9))         self.assertThat(self.app_proxy, NotEquals(None)) Line 54 sleep(1000) is using JavaScript units (miliseconds), instead of Python units (seconds). Maybe this function could be rewritten using Eventually.
2014-01-24 15:59:08 Alexandre Abreu affects webapps-demo webapps-core
2014-09-23 16:22:57 David Barth webapps-core: importance Undecided Wishlist
2014-09-23 16:23:02 David Barth webapps-core: status New Triaged