mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-21 21:04:59 +00:00
style: fix import order and quote style in test file
This commit is contained in:
parent
920e8da57c
commit
a70b364842
1 changed files with 2 additions and 2 deletions
|
@ -1,13 +1,13 @@
|
|||
import os
|
||||
import shutil
|
||||
import struct
|
||||
import webbrowser
|
||||
from unittest import mock
|
||||
|
||||
import pytest
|
||||
from git import GitError, Repo
|
||||
|
||||
from aider import urls
|
||||
import webbrowser
|
||||
from aider.main import sanity_check_repo
|
||||
|
||||
|
||||
|
@ -101,7 +101,7 @@ def test_detached_head_state(create_repo, mock_io):
|
|||
mock_io.tool_output.assert_not_called()
|
||||
|
||||
|
||||
@mock.patch('webbrowser.open')
|
||||
@mock.patch("webbrowser.open")
|
||||
def test_git_index_version_greater_than_2(mock_browser, create_repo, mock_io):
|
||||
repo_path, repo = create_repo
|
||||
# Set the git index version to 3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue