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
|
@ -32,22 +32,24 @@ void main() {
|
|||
isA<LibGit2Error>().having(
|
||||
(e) => e.toString(),
|
||||
'error',
|
||||
"failed to parse signature - Signature cannot have an empty name or email",
|
||||
"failed to parse signature - Signature cannot have an empty name "
|
||||
"or email",
|
||||
),
|
||||
),
|
||||
);
|
||||
});
|
||||
|
||||
test(
|
||||
'throws when trying to create with empty name and email and default time',
|
||||
() {
|
||||
'throws when trying to create with empty name and email and '
|
||||
'default time', () {
|
||||
expect(
|
||||
() => Signature.create(name: '', email: ''),
|
||||
throwsA(
|
||||
isA<LibGit2Error>().having(
|
||||
(e) => e.toString(),
|
||||
'error',
|
||||
"failed to parse signature - Signature cannot have an empty name or email",
|
||||
"failed to parse signature - Signature cannot have an empty name "
|
||||
"or email",
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue