Skip to content

Commit

Permalink
Fix testing
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Nov 14, 2023
1 parent e710193 commit 295fbaa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mail_deduplicate/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@
import arrow
import pytest
from boltons.iterutils import same
from click_extra.tests.conftest import invoke as invoke_extra # noqa: F401
from click_extra.tests.conftest import runner # noqa: F401

from click_extra.tests.conftest import extra_runner # noqa: F401

from mail_deduplicate.cli import mdedup

""" Fixtures, configuration and helpers for tests. """


@pytest.fixture()
def invoke(invoke_extra): # noqa: F811
return partial(invoke_extra, mdedup)
def invoke(extra_runner): # noqa: F811
return partial(extra_runner.invoke, mdedup)


class MailFactory:
Expand Down

0 comments on commit 295fbaa

Please sign in to comment.