From 6bdf133f068ede471f57c60377f0da3fb140d4a4 Mon Sep 17 00:00:00 2001 From: Aleksey Kulikov Date: Tue, 11 Jan 2022 18:36:41 +0300 Subject: [PATCH] test(credentials): use https instead of git Github removed support of the unauthenticated git protocol. --- test/credentials_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/credentials_test.dart b/test/credentials_test.dart index e86d86c..b4bf3c3 100644 --- a/test/credentials_test.dart +++ b/test/credentials_test.dart @@ -105,7 +105,7 @@ void main() { final callbacks = Callbacks(credentials: keypair); final repo = Repository.clone( - url: 'git://github.com/libgit2/TestGitRepository', + url: 'https://github.com/libgit2/TestGitRepository', localPath: cloneDir.path, callbacks: callbacks, ); @@ -195,7 +195,7 @@ void main() { final callbacks = Callbacks(credentials: keypair); final repo = Repository.clone( - url: 'git://github.com/libgit2/TestGitRepository', + url: 'https://github.com/libgit2/TestGitRepository', localPath: cloneDir.path, callbacks: callbacks, );