test-credential-literals-flagged-by-secret-scanner

Integration test files with hardcoded password strings (even obviously fake ones like ‘Test@12345678’) are flagged by the pre-commit secret scanner and block commits. The fix is to assign them to clearly named constants (e.g., TEST_PASSWORD = ’…’) so the scanner recognises the test-fixture context. Apply this pattern when writing any test that uses credential literals.