style: Remove extra blank lines in test_editor.py

This commit is contained in:
Paul Gauthier (aider) 2024-11-21 09:58:39 -08:00
parent 87654b698b
commit 5abadc31a3

View file

@ -30,7 +30,6 @@ def test_get_environment_editor():
assert get_environment_editor() == "code" assert get_environment_editor() == "code"
def test_discover_editor_defaults(): def test_discover_editor_defaults():
with patch("platform.system") as mock_system: with patch("platform.system") as mock_system:
# Test Windows default # Test Windows default
@ -49,7 +48,6 @@ def test_discover_editor_defaults():
assert discover_editor() == [DEFAULT_EDITOR_NIX] assert discover_editor() == [DEFAULT_EDITOR_NIX]
def test_write_temp_file(): def test_write_temp_file():
# Test basic file creation # Test basic file creation
content = "test content" content = "test content"