diff --git a/tests/test_data_account.py b/tests/test_data_account.py index 2ef4b4256d65429a47616b1aee629304652221b3..aed5909fcea3fac3c0a9306585592d23a8b9c607 100644 --- a/tests/test_data_account.py +++ b/tests/test_data_account.py @@ -286,7 +286,7 @@ def test_is_account(account_s): 'Income:Donations', 'Liabilities:CreditCard:Visa0123', ]) -def test_is_account(clean_account_meta, account_s): +def test_is_account(account_s): assert data.Account.is_account(account_s) @pytest.mark.parametrize('account_s', [ @@ -298,7 +298,7 @@ def test_is_account(clean_account_meta, account_s): 'Expenses:Banking_Fees', 'Revenue:Grants', ]) -def test_is_not_account(clean_account_meta, account_s): +def test_is_not_account(account_s): assert not data.Account.is_account(account_s) @pytest.mark.parametrize('account_s,expected', [