From 6a712b5fda698b402b547e2edca225548386802a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=AE=AE=E0=AE=A9=E0=AF=8B=E0=AE=9C=E0=AF=8D=E0=AE=95?= =?UTF-8?q?=E0=AF=81=E0=AE=AE=E0=AE=BE=E0=AE=B0=E0=AF=8D=20=E0=AE=AA?= =?UTF-8?q?=E0=AE=B4=E0=AE=A9=E0=AE=BF=E0=AE=9A=E0=AF=8D=E0=AE=9A=E0=AE=BE?= =?UTF-8?q?=E0=AE=AE=E0=AE=BF?= Date: Thu, 7 Nov 2024 04:52:55 +0530 Subject: [PATCH] Update test_codes.py --- evaluation/swe_bench/test_codes.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/evaluation/swe_bench/test_codes.py b/evaluation/swe_bench/test_codes.py index 2a2aa29f89a6..6a5e78151663 100644 --- a/evaluation/swe_bench/test_codes.py +++ b/evaluation/swe_bench/test_codes.py @@ -229,6 +229,9 @@ def get_test_code(instance_id: str): 'django__django-13590': custom_test_code.format( cmd='tests/runtests.py expressions.tests.IterableLookupInnerExpressionsTests.test_complex_expressions_do_not_introduce_sql_injection_via_untrusted_string_inclusion && tests/runtests.py expressions.tests.IterableLookupInnerExpressionsTests.test_range_lookup_allows_F_expressions_and_expressions_for_integers' ), + 'django__django-14787': custom_test_code.format( + cmd='tests/runtests.py decorators.tests.MethodDecoratorTests.test_new_attribute' + ), } return test_codes.get(instance_id, '')