aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/tests/unit/test_git_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'autogpts/autogpt/tests/unit/test_git_commands.py')
-rw-r--r--autogpts/autogpt/tests/unit/test_git_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogpts/autogpt/tests/unit/test_git_commands.py b/autogpts/autogpt/tests/unit/test_git_commands.py
index 48fa92d7f..42bcd7b99 100644
--- a/autogpts/autogpt/tests/unit/test_git_commands.py
+++ b/autogpts/autogpt/tests/unit/test_git_commands.py
@@ -26,7 +26,7 @@ def test_clone_auto_gpt_repository(workspace, mock_clone_from, agent: Agent):
assert clone_result == expected_output
mock_clone_from.assert_called_once_with(
- url=f"{scheme}{agent.legacy_config.github_username}:{agent.legacy_config.github_api_key}@{repo}",
+ url=f"{scheme}{agent.legacy_config.github_username}:{agent.legacy_config.github_api_key}@{repo}", # noqa: E501
to_path=clone_path,
)