style: format long string in test_repomap.py

This commit is contained in:
Paul Gauthier (aider) 2024-08-30 18:13:02 -07:00 committed by Paul Gauthier
parent de4bdae2de
commit cc1f5cd4c2

View file

@ -442,7 +442,11 @@ class TestRepoMapAllLanguages(unittest.TestCase):
),
"tsx": (
"test.tsx",
"import React from 'react';\n\nconst Greeting: React.FC<{ name: string }> = ({ name }) => {\n return <h1>Hello, {name}!</h1>;\n};\n\nexport default Greeting;\n",
(
"import React from 'react';\n\nconst Greeting: React.FC<{ name: string }> = ({"
" name }) => {\n return <h1>Hello, {name}!</h1>;\n};\n\nexport default"
" Greeting;\n"
),
),
}