Skip to content

Commit

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


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


def test_can_create_missing_maildir_folders_before_enqueueing_message(path_maildir):
Expand Down

0 comments on commit 7a014ec

Please sign in to comment.