Skip to content

Commit 3c6cab7

Browse files
JonnyWong16Copilot
andauthored
Fix tmp_path in JWT test keys
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 8dd7c80 commit 3c6cab7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_myplex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def test_myplex_jwt_login(account, tmp_path, monkeypatch):
385385

386386
jwtlogin = MyPlexJWTLogin(
387387
jwtToken=jwtToken,
388-
keypair=('private.key', 'public.key'),
388+
keypair=(tmp_path / 'private.key', tmp_path / 'public.key'),
389389
scopes=['username', 'email', 'friendly_name']
390390
)
391391
assert jwtlogin.verifyJWT()

0 commit comments

Comments
 (0)