We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb72f78 + 1bc3c48 commit a423a83Copy full SHA for a423a83
tests/test_local.py
@@ -25,7 +25,7 @@ def test_multiple(self):
25
self.local2 = Local(os.environ['BROWSERSTACK_ACCESS_KEY'])
26
self.local2.start()
27
except BrowserStackLocalError as e:
28
- self.assertEqual(str(e), "Either another browserstack local client is running on your machine or some server is listening on port 45691")
+ self.assertRegex(str(e), r'Either another browserstack local client is running on your machine or some server is listening on port 4569[10]')
29
30
def test_verbose(self):
31
self.local.start(v=True, onlyCommand=True)
0 commit comments