From d87a3acdefe6f2889b2c8c5035e644727929d362 Mon Sep 17 00:00:00 2001 From: Christian Gunderman Date: Mon, 19 Jan 2026 07:16:05 +0000 Subject: [PATCH] Fix inverted logic. (#17007) --- evals/gitRepo.eval.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/evals/gitRepo.eval.ts b/evals/gitRepo.eval.ts index deb508652b..06735b86fa 100644 --- a/evals/gitRepo.eval.ts +++ b/evals/gitRepo.eval.ts @@ -38,7 +38,8 @@ describe('git repo eval', () => { const args = JSON.parse(log.toolRequest.args); return ( args.command && - !(args.command.includes('git') && args.command.includes('commit')) + args.command.includes('git') && + args.command.includes('commit') ); } catch { return false;