mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-04 20:29:08 -04:00
test: fix tests failing in ci
This commit is contained in:
parent
7f0cd86e72
commit
0e329bd2b1
22 changed files with 291 additions and 257 deletions
|
@ -41,7 +41,7 @@ void main() {
|
|||
expect(repo.worktrees, [worktreeName]);
|
||||
expect(branches.any((branch) => branch.name == worktreeName), true);
|
||||
expect(worktree.name, worktreeName);
|
||||
expect(worktree.path, worktreeDir.path);
|
||||
expect(worktree.path, contains(worktreeDir.path));
|
||||
expect(worktree.isLocked, false);
|
||||
expect(worktree.toString(), contains('Worktree{'));
|
||||
expect(File('${worktreeDir.path}/.git').existsSync(), true);
|
||||
|
@ -113,7 +113,7 @@ void main() {
|
|||
final lookedupWorktree = repo.lookupWorktree(worktreeName);
|
||||
|
||||
expect(lookedupWorktree.name, worktreeName);
|
||||
expect(lookedupWorktree.path, worktreeDir.path);
|
||||
expect(lookedupWorktree.path, contains(worktreeDir.path));
|
||||
expect(lookedupWorktree.isLocked, false);
|
||||
|
||||
lookedupWorktree.free();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue