1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-21 00:19:42 +02:00

formatting

This commit is contained in:
Kelly Brazil
2024-02-05 12:44:34 -08:00
parent 9eb56543be
commit c581e959fa

View File

@ -48,10 +48,10 @@ def run_all_fixtures(self, test_parser_path):
if not fixtures:
raise ValueError(f"No fixtures found for '{parser_name}' tests!")
_test_print(f"\nRun all fixtures for parser '{parser_name}':")
_test_print(f"\n Run all fixtures for parser '{parser_name}':")
for file, file_path in fixtures:
_test_print(f"- test '{parser_name}' parser with fixture: '{file}'")
_test_print(f" - test '{parser_name}' parser with fixture: '{file}'")
with self.subTest(f"fixture: '{file}'"):
with _open_file(file_path, '.out') as in_file, \