From 28e3fd865855639d682f814b8ab978bbc0694943 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Sun, 16 Mar 2025 22:15:05 +0100 Subject: [PATCH] Minimized tests --- obsidian_import/__init__.py | 7 +++++-- tests/test_myanimelist.py | 16 ++-------------- 2 files changed, 7 insertions(+), 16 deletions(-) diff --git a/obsidian_import/__init__.py b/obsidian_import/__init__.py index 38a3c9c..9b74f36 100644 --- a/obsidian_import/__init__.py +++ b/obsidian_import/__init__.py @@ -195,7 +195,8 @@ def import_activity_samples( default_estimated_duration: datetime.timedelta | None = None, ) -> int: samples = heuristically_realize_samples( - raw_samples, default_estimated_duration=default_estimated_duration, + raw_samples, + default_estimated_duration=default_estimated_duration, ) if group_category is not None: @@ -277,7 +278,9 @@ def import_wanikani_events(vault: ObsidianVault, rows: Rows): if k in row: raw_samples.append( ActivitySample( - [Label('application.name', 'WaniKani')], None, row[k], + [Label('application.name', 'WaniKani')], + None, + row[k], ), ) del k diff --git a/tests/test_myanimelist.py b/tests/test_myanimelist.py index 0f026ce..920c53a 100644 --- a/tests/test_myanimelist.py +++ b/tests/test_myanimelist.py @@ -14,17 +14,5 @@ from personal_data.fetchers.myanimelist import parse_name ) def test_parse_name(input_str, expected_group1, expected_group2): m = parse_name(input_str) - assert m is not None, f'parse_name returned None for input: {input_str}' - actual_group1 = m.group(1).strip() if m.group(1) is not None else None - actual_group2 = m.group(2).strip() if m.group(2) is not None else None - assert actual_group1 == expected_group1, ( - f'Expected group(1): {expected_group1} but got: {actual_group1}' - ) - if expected_group2 is None: - assert actual_group2 is None, ( - f'Expected group(2) to be None but got: {actual_group2}' - ) - else: - assert actual_group2 == expected_group2, ( - f'Expected group(2): {expected_group2} but got: {actual_group2}' - ) + assert m.group(1) == expected_group1 + assert m.group(2) == expected_group2