Skip to content

Commit

Permalink
TST: use name of authenticated user in owner fixture (#164)
Browse files Browse the repository at this point in the history
* TST: fix owner fixture

* fix long line linter error
  • Loading branch information
frankenjoe authored Jan 17, 2024
1 parent 73b1efc commit 21a6cce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ def owner(request):
r"""Return expected owner value."""
name = request.param
if name == 'artifactory':
owner = 'audeering-unittest'
owner = audbackend.core.artifactory._authentication(
'audeering.jfrog.io/artifactory'
)[0]
else:
if os.name == 'nt':
owner = 'Administrators'
Expand Down

0 comments on commit 21a6cce

Please sign in to comment.