Skip to content
Snippets Groups Projects
Commit 53ce3f01 authored by ulif's avatar ulif
Browse files

Fix fixture.

The temporary wordlists dir must be a string.
parent a792bad9
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ def wordlists_dir(request, monkeypatch, tmpdir):
"""This fixture provides a temporary wordlist dir.
"""
_orig_wordlists_dir = WORDLISTS_DIR
monkeypatch.setattr("diceware.WORDLISTS_DIR", tmpdir)
monkeypatch.setattr("diceware.WORDLISTS_DIR", str(tmpdir))
return tmpdir
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment