Skip to content

Commit 9a4bbf4

Browse files
[py] Correct case for drivers when starting Remote
1 parent 0f49b53 commit 9a4bbf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def load(self, name):
199199
@pytest.fixture(autouse=True, scope='session')
200200
def server(request):
201201
drivers = request.config.getoption('drivers')
202-
if drivers is None or 'Remote' not in drivers:
202+
if drivers is None or 'remote' not in drivers:
203203
yield None
204204
return
205205

0 commit comments

Comments
 (0)