refactor!: use class names instead of aliases from Repository in tests (#37)

BREAKING CHANGE: move API methods related to diffing into Diff class
This commit is contained in:
Aleksey Kulikov 2022-01-25 12:05:34 +03:00 committed by GitHub
parent 3e1ece4e6f
commit 08cbe8a17f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 943 additions and 834 deletions

View file

@ -42,7 +42,7 @@ void main() {
expect(contents, 'Feature edit\n');
final index = repo.index;
final diff = index.diffToWorkdir();
final diff = Diff.indexToWorkdir(repo: repo, index: index);
expect(diff.deltas, isEmpty);
index.free();
@ -57,7 +57,7 @@ void main() {
expect(contents, 'Feature edit\n');
final index = repo.index;
final diff = index.diffToWorkdir();
final diff = Diff.indexToWorkdir(repo: repo, index: index);
expect(diff.deltas.length, 1);
index.free();