Fix review comments: remove empty string concat, fix variable scoping in BFCL evaluate

Agent-Logs-Url: https://github.com/HarnessLab/claw-code-agent/sessions/6890e3d0-3058-4b1f-b7e5-27171c079c62

Co-authored-by: abdoelsayed2016 <27821589+abdoelsayed2016@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-05 19:59:16 +00:00
committed by GitHub
parent 231b977b92
commit 589a74f4a8
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ _BUILTIN_PROBLEMS: list[dict[str, Any]] = [
"code": 'import re\ndef find_char_long(text):\n return (re.findall(r"\\b\\w{4,}\\b", text))',
"test_list": [
'assert find_char_long(\'Please move back to stream\') == [\'Please\', \'move\', \'back\', \'stream\']',
'assert find_char_long(\'Joveacvber gfnbb vcdf\') == [\'Jove\', \'acvber\', \'gfnbb\', \'vcdf\']' + "",
'assert find_char_long(\'Joveacvber gfnbb vcdf\') == [\'Jove\', \'acvber\', \'gfnbb\', \'vcdf\']',
'assert find_char_long(\'Davvede aridge\') == [\'Davvede\', \'aridge\']',
],
},