mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -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
|
@ -119,8 +119,8 @@ void main() {
|
|||
});
|
||||
|
||||
test(
|
||||
'.range returns revspec with correct fields values based on provided spec',
|
||||
() {
|
||||
'.range returns revspec with correct fields values based on '
|
||||
'provided spec', () {
|
||||
var revspec = repo.revParse('master');
|
||||
|
||||
expect(revspec.from.oid.sha, headSHA);
|
||||
|
@ -165,12 +165,12 @@ void main() {
|
|||
),
|
||||
);
|
||||
expect(
|
||||
() => repo.revParse('master........5aecfa'),
|
||||
() => repo.revParse('master.......5aecfa'),
|
||||
throwsA(
|
||||
isA<LibGit2Error>().having(
|
||||
(e) => e.toString(),
|
||||
'error',
|
||||
"failed to parse revision specifier - Invalid pattern '.....5aecfa'",
|
||||
"failed to parse revision specifier - Invalid pattern '....5aecfa'",
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue