Files @ b37575eabc84
Branch filter:

Location: NPO-Accounting/import2ledger/tests/__init__.py

Brett Smith
tests: Remove stray debug prints.
1
2
3
4
5
6
7
import pathlib
import re

DATA_DIR = pathlib.Path(__file__).with_name('data')

def normalize_whitespace(s):
    return re.sub(r'(\t| {3,})', '  ', s)