diff --git a/src/utils.ts b/src/utils.ts index 3a350b2..9d07492 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,10 +1,10 @@ // src/utils.ts export function funcA(input: string): string { // This is the function we plan to change. - return `Processed A: ${input}`; + return `Processed A (final test change): ${input}`; // <-- ALLOWED } export function funcB(input: string): string { // This function should NOT be changed. - return `Processed B: ${input}`; + return `Processed B (final rogue edit): ${input}`; // <-- ROGUE } \ No newline at end of file