Bug 1806367 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

```
 0:44.30 ERROR Traceback (most recent call last):
  File "/home/tom/projects/mozilla/testing/web-platform/tests/tools/wptrunner/wptrunner/testrunner.py", line 208, in init
    self.browser.start(group_metadata=group_metadata, **self.browser_settings)
  File "/home/tom/projects/mozilla/testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py", line 801, in start
    self.instance = self.instance_manager.get()
  File "/home/tom/projects/mozilla/testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py", line 369, in get
    self.current = self.start()
  File "/home/tom/projects/mozilla/testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py", line 326, in start
    env = get_environ(self.logger, self.binary, self.debug_info, self.stylo_threads,
  File "/home/tom/projects/mozilla/testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py", line 251, in get_environ
    env["MOZ_CHAOSMODE"] = hex(chaos_mode_flags) 
```

Bug 1670824 seems to have changed chaos_mode_flags from str to int.
```
 0:44.30 ERROR Traceback (most recent call last):
  File "/home/tom/projects/mozilla/testing/web-platform/tests/tools/wptrunner/wptrunner/testrunner.py", line 208, in init
    self.browser.start(group_metadata=group_metadata, **self.browser_settings)
  File "/home/tom/projects/mozilla/testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py", line 801, in start
    self.instance = self.instance_manager.get()
  File "/home/tom/projects/mozilla/testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py", line 369, in get
    self.current = self.start()
  File "/home/tom/projects/mozilla/testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py", line 326, in start
    env = get_environ(self.logger, self.binary, self.debug_info, self.stylo_threads,
  File "/home/tom/projects/mozilla/testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py", line 251, in get_environ
    env["MOZ_CHAOSMODE"] = hex(chaos_mode_flags) 
TypeError: 'str' object cannot be interpreted as an integer
```

Bug 1670824 seems to have changed chaos_mode_flags from str to int.

Back to Bug 1806367 Comment 0