Bug 1284982 - Fix flake8 warning for a too long comment. r?maja_zf draft
authorHenrik Skupin <mail@hskupin.info>
Wed, 06 Jul 2016 22:08:46 +0200
changeset 384612 f7654a49161b902339ba32b2b3d7fdf68c2c7fb0
parent 384611 086027df5ad5f9fb39254aba006cd2e12e25c3f8
child 524755 aebdf134ba89af42bf8525d069636f82b6abfbdf
push id22327
push userbmo:hskupin@gmail.com
push dateWed, 06 Jul 2016 20:09:09 +0000
reviewersmaja_zf
bugs1284982
milestone50.0a1
Bug 1284982 - Fix flake8 warning for a too long comment. r?maja_zf MozReview-Commit-ID: 7bJP2DNijRW
testing/marionette/client/marionette_driver/marionette.py
--- a/testing/marionette/client/marionette_driver/marionette.py
+++ b/testing/marionette/client/marionette_driver/marionette.py
@@ -1037,18 +1037,19 @@ class Marionette(object):
             self.delete_session()
             self.instance.restart(clean=clean)
 
         self.raise_for_port(self.wait_for_port())
         self.start_session(session_id=self.session_id)
         self._reset_timeouts()
 
         if in_app:
-            # In some cases Firefox restarts itself by spawning into a new process group. As long as
-            # mozrprocess cannot track that (bug 1176758) we assist by checking the new process id.
+            # In some cases Firefox restarts itself by spawning into a new process group.
+            # As long as mozprocess cannot track that behavior (bug 1284864) we assist by
+            # informing about the new process id.
             self.instance.runner.process_handler.check_for_detached(self.session['processId'])
 
     def absolute_url(self, relative_url):
         '''
         Returns an absolute url for files served from Marionette's www directory.
 
         :param relative_url: The url of a static file, relative to Marionette's www directory.
         '''