We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fbab67 commit 16a8285Copy full SHA for 16a8285
gendiff/tests/diff_generator_test.py
@@ -18,7 +18,6 @@ def test_generate_diff(file1, file2, expected_file):
18
with open(expected_file, "r") as f:
19
expected_result = f.read().strip()
20
21
- # Улучшенная нормализация пробелов
22
def normalize_text(text):
23
text = re.sub(r'\s*:\s*', ': ', text) # Ровный пробел перед двоеточием
24
text = re.sub(r'\s*{\s*', ' { ', text) # Ровный пробел перед `{`
0 commit comments