Skip to content

Commit

Permalink
[py] Correct case for drivers when starting Remote
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Mar 19, 2021
1 parent 0f49b53 commit 9a4bbf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def load(self, name):
@pytest.fixture(autouse=True, scope='session')
def server(request):
drivers = request.config.getoption('drivers')
if drivers is None or 'Remote' not in drivers:
if drivers is None or 'remote' not in drivers:
yield None
return

Expand Down

0 comments on commit 9a4bbf4

Please sign in to comment.