Skip to content

Commit

Permalink
queue_runner_test with py2
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixSchwarz committed Jul 18, 2024
1 parent 7a014ec commit aae17f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/queue_runner_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@


@pytest.fixture
def path_maildir(tmpdir):
_path_maildir = os.path.join(tmpdir, 'mailqueue')
def path_maildir(tmp_path):
_path_maildir = os.path.join(str(tmp_path), 'mailqueue')
create_maildir_directories(_path_maildir)
return _path_maildir

Expand Down

0 comments on commit aae17f0

Please sign in to comment.