mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-04 20:29:08 -04:00
style: avoid lines longer than 80 characters
This commit is contained in:
parent
a806d0a312
commit
7b14ee6b9b
76 changed files with 1246 additions and 972 deletions
|
@ -337,8 +337,8 @@ void main() {
|
|||
});
|
||||
|
||||
test(
|
||||
'throws when trying to get remote repo\'s reference list with invalid url',
|
||||
() {
|
||||
'throws when trying to get remote repo\'s reference list with '
|
||||
'invalid url', () {
|
||||
Remote.setUrl(repo: repo, remote: 'libgit2', url: 'invalid');
|
||||
final remote = repo.lookupRemote('libgit2');
|
||||
|
||||
|
@ -455,7 +455,8 @@ void main() {
|
|||
isA<LibGit2Error>().having(
|
||||
(e) => e.toString(),
|
||||
'error',
|
||||
"failed to resolve address for wrong.url: Name or service not known",
|
||||
"failed to resolve address for wrong.url: Name or service "
|
||||
"not known",
|
||||
),
|
||||
),
|
||||
);
|
||||
|
@ -604,7 +605,8 @@ Total 69 (delta 0), reused 1 (delta 0), pack-reused 68
|
|||
isA<LibGit2Error>().having(
|
||||
(e) => e.toString(),
|
||||
'error',
|
||||
"failed to resolve address for wrong.url: Name or service not known",
|
||||
"failed to resolve address for wrong.url: Name or service "
|
||||
"not known",
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue