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
|
@ -112,7 +112,8 @@ void main() {
|
|||
isA<LibGit2Error>().having(
|
||||
(e) => e.toString(),
|
||||
'error',
|
||||
"could not find '${repo.workdir}not_there' to stat: No such file or directory",
|
||||
"could not find '${repo.workdir}not_there' to stat: No such file "
|
||||
"or directory",
|
||||
),
|
||||
),
|
||||
);
|
||||
|
@ -141,7 +142,8 @@ void main() {
|
|||
isA<LibGit2Error>().having(
|
||||
(e) => e.toString(),
|
||||
'error',
|
||||
"cannot create blob from file. This operation is not allowed against bare repositories.",
|
||||
"cannot create blob from file. This operation is not allowed "
|
||||
"against bare repositories.",
|
||||
),
|
||||
),
|
||||
);
|
||||
|
@ -184,7 +186,8 @@ void main() {
|
|||
isA<LibGit2Error>().having(
|
||||
(e) => e.toString(),
|
||||
'error',
|
||||
"cannot index add all. This operation is not allowed against bare repositories.",
|
||||
"cannot index add all. This operation is not allowed against "
|
||||
"bare repositories.",
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue