mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
style: Fix line length violations in test_repomap.py
This commit is contained in:
parent
27f0ca3b08
commit
7bc7b2e3da
1 changed files with 7 additions and 2 deletions
|
@ -539,11 +539,16 @@ class Greeter {
|
||||||
dump(result)
|
dump(result)
|
||||||
|
|
||||||
# Check if the result contains all the expected files and symbols
|
# Check if the result contains all the expected files and symbols
|
||||||
self.assertIn(filename, result, f"File for language {lang} not found in repo map: {result}")
|
self.assertIn(
|
||||||
|
filename, result, f"File for language {lang} not found in repo map: {result}"
|
||||||
|
)
|
||||||
self.assertIn(
|
self.assertIn(
|
||||||
key_symbol,
|
key_symbol,
|
||||||
result,
|
result,
|
||||||
f"Key symbol '{key_symbol}' for language {lang} not found in repo map: {result}",
|
(
|
||||||
|
f"Key symbol '{key_symbol}' for language {lang} not found in repo map:"
|
||||||
|
f" {result}"
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
# close the open cache files, so Windows won't error
|
# close the open cache files, so Windows won't error
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue