mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-04 20:29:08 -04:00
test: fix tests failing on windows
This commit is contained in:
parent
f4e17b124d
commit
a71bb14b86
8 changed files with 26 additions and 34 deletions
|
@ -20,7 +20,11 @@ void main() {
|
|||
|
||||
tearDown(() {
|
||||
repo.free();
|
||||
tmpDir.deleteSync(recursive: true);
|
||||
try {
|
||||
tmpDir.deleteSync(recursive: true);
|
||||
} catch (e) {
|
||||
return;
|
||||
}
|
||||
});
|
||||
|
||||
group('Submodule', () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue