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
|
@ -34,8 +34,8 @@ void main() {
|
|||
});
|
||||
|
||||
test(
|
||||
'throws when trying to checkout head with invalid alternative directory',
|
||||
() {
|
||||
'throws when trying to checkout head with invalid alternative '
|
||||
'directory', () {
|
||||
expect(
|
||||
() => repo.checkout(
|
||||
refName: 'HEAD',
|
||||
|
@ -66,8 +66,8 @@ void main() {
|
|||
});
|
||||
|
||||
test(
|
||||
'throws when trying to checkout index with invalid alternative directory',
|
||||
() {
|
||||
'throws when trying to checkout index with invalid alternative '
|
||||
'directory', () {
|
||||
expect(
|
||||
() => repo.checkout(directory: 'not/there'),
|
||||
throwsA(
|
||||
|
@ -111,8 +111,8 @@ void main() {
|
|||
});
|
||||
|
||||
test(
|
||||
'throws when trying to checkout tree with invalid alternative directory',
|
||||
() {
|
||||
'throws when trying to checkout tree with invalid alternative '
|
||||
'directory', () {
|
||||
expect(
|
||||
() => repo.checkout(
|
||||
refName: 'refs/heads/feature',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue