refactor(tests): Add strict type hints to sixth batch of test files

This commit is contained in:
2026-02-28 19:25:54 -05:00
parent cc806d2cc6
commit f5e43c7987
10 changed files with 12 additions and 14 deletions

View File

@@ -8,7 +8,7 @@ from models import TrackState, Metadata, Ticket
# Import the persistence functions from project_manager
from project_manager import save_track_state, load_track_state
def test_track_state_persistence(tmp_path):
def test_track_state_persistence(tmp_path) -> None:
"""
Tests saving and loading a TrackState object to/from a TOML file.
1. Create a TrackState object with sample metadata, discussion, and tasks.