Reformat
This commit is contained in:
parent
a0267490ea
commit
285b6c7d5f
1 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ from cli.codeflash.code_utils.git_utils import get_repo_owner_and_name
|
|||
|
||||
class TestGitUtils(unittest.TestCase):
|
||||
|
||||
@patch('cli.codeflash.code_utils.git_utils.get_remote_url')
|
||||
@patch("cli.codeflash.code_utils.git_utils.get_remote_url")
|
||||
def test_test_get_repo_owner_and_name(self, mock_get_remote_url):
|
||||
# Test with a standard GitHub HTTPS URL
|
||||
mock_get_remote_url.return_value = "https://github.com/owner/repo.git"
|
||||
|
|
@ -27,5 +27,5 @@ class TestGitUtils(unittest.TestCase):
|
|||
self.assertEqual(repo_name, "repo")
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
|
|
|
|||
Loading…
Reference in a new issue