diff --git a/tests/test_main.py b/tests/test_main.py index 6f6c438..9c131e3 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -46,7 +46,6 @@ def test_fees_import(): pathlib.Path(DATA_DIR, 'PatreonEarnings.csv').as_posix(), ] exitcode, stdout, _ = run_main(arglist) - print(_.getvalue()) assert exitcode == 0 actual = entries2set(stdout) assert actual == expected_entries('test_main_fees_import.ledger') diff --git a/tests/test_templates.py b/tests/test_templates.py index 8dc0243..d805fcb 100644 --- a/tests/test_templates.py +++ b/tests/test_templates.py @@ -19,7 +19,6 @@ def template_from(section_name, *args, **kwargs): def assert_easy_render(tmpl, entity, amount, currency, expect_date, expect_amt): rendered = tmpl.render(entity, decimal.Decimal(amount), currency, DATE) - print(repr(rendered)) lines = [normalize_whitespace(s) for s in rendered.splitlines()] assert lines == [ "",