Skip to content

Commit 3c43c8c

Browse files
committed
fix: convert client_lib Path to str before assigning to driver config
1 parent 2fa464c commit 3c43c8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def pytest_configure(config):
122122
client_lib = Path(client_lib)
123123
if not client_lib.is_file():
124124
pytest.exit(f"Client library '{client_lib}' not found!")
125-
driver_config.fb_client_library.value = client_lib
125+
driver_config.fb_client_library.value = str(client_lib)
126126
#
127127
if host := config.getoption('host'):
128128
_vars_['host'] = host

0 commit comments

Comments
 (0)