Skip to content

Commit

Permalink
cc: explicitly cast tmpdir to str in test_island_logger.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mssalvatore committed Feb 16, 2021
1 parent 2d8cec3 commit 399aaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monkey/monkey_island/cc/test_island_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


def set_home_env(monkeypatch, tmpdir):
monkeypatch.setenv("HOME", tmpdir)
monkeypatch.setenv("HOME", str(tmpdir))


def test_expanduser_filename(monkeypatch, tmpdir):
Expand Down

0 comments on commit 399aaf1

Please sign in to comment.