mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
test: remove unnecessary variables declarations
This commit is contained in:
parent
76b8de1f80
commit
28f08e308a
23 changed files with 416 additions and 492 deletions
|
@ -68,8 +68,11 @@ void main() {
|
|||
});
|
||||
|
||||
test('updates with provided init flag', () {
|
||||
final submoduleFilePath =
|
||||
p.join(repo.workdir, testSubmodule, 'master.txt');
|
||||
final submoduleFilePath = p.join(
|
||||
repo.workdir,
|
||||
testSubmodule,
|
||||
'master.txt',
|
||||
);
|
||||
expect(File(submoduleFilePath).existsSync(), false);
|
||||
|
||||
Submodule.update(repo: repo, name: testSubmodule, init: true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue