From 4bdd08602c9362c6533fb829c9c5f1550f956fe1 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sat, 7 Feb 2026 17:06:45 -0500 Subject: [PATCH] test: rename test files to better reflect their purpose - Rename phase1_integration_test.go to universal_progress_integration_test.go (tests universal reading progress feature) - Rename ebook_scanner_phase2_test.go to ebook_scanner_hash_test.go (tests hash calculation and file identification utilities) These renames make the test suite more maintainable and self-documenting. --- ...integration_test.go => universal_progress_integration_test.go} | 0 .../{ebook_scanner_phase2_test.go => ebook_scanner_hash_test.go} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename cmd/server/tests/{phase1_integration_test.go => universal_progress_integration_test.go} (100%) rename internal/services/{ebook_scanner_phase2_test.go => ebook_scanner_hash_test.go} (100%) diff --git a/cmd/server/tests/phase1_integration_test.go b/cmd/server/tests/universal_progress_integration_test.go similarity index 100% rename from cmd/server/tests/phase1_integration_test.go rename to cmd/server/tests/universal_progress_integration_test.go diff --git a/internal/services/ebook_scanner_phase2_test.go b/internal/services/ebook_scanner_hash_test.go similarity index 100% rename from internal/services/ebook_scanner_phase2_test.go rename to internal/services/ebook_scanner_hash_test.go