File diff df0c3546fd5c → 87e715df7cec
tests/test_data_account.py
Show inline comments
...
 
@@ -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', [