Bug 1925308 - [marionette] Fix KeyError when trying to get the tsan flag. r=webdriver-reviewers,Sasha

Differential Revision: https://phabricator.services.mozilla.com/D229938
This commit is contained in:
Henrik Skupin 2024-11-22 16:16:43 +00:00
parent 1cf7038b94
commit 30c8b2d2a0

View File

@ -198,7 +198,7 @@ class TestQuitRestart(MarionetteTestCase):
self.assertEqual(self.marionette.session.get("test:fooBar"), True) self.assertEqual(self.marionette.session.get("test:fooBar"), True)
@unittest.skipIf( @unittest.skipIf(
mozinfo.info["tsan"] == True, mozinfo.info.get("tsan") is True,
"Bug 1925308 - socket.timeout: Process unexpectedly quit without restarting", "Bug 1925308 - socket.timeout: Process unexpectedly quit without restarting",
) )
def test_restart_safe_mode(self): def test_restart_safe_mode(self):