style: clean up tests names

This commit is contained in:
Aleksey Kulikov 2021-12-23 15:29:28 +03:00
parent 41fab98d17
commit c516119397
33 changed files with 212 additions and 223 deletions

View file

@ -28,7 +28,7 @@ void main() {
});
group('RevWalk', () {
test('successfully initializes', () {
test('initializes walker', () {
final walker = RevWalk(repo);
expect(walker, isA<RevWalk>());
walker.free();
@ -72,7 +72,7 @@ void main() {
walker.free();
});
test('successfully changes sorting', () {
test('changes sorting', () {
final walker = RevWalk(repo);
final start = Oid.fromSHA(repo: repo, sha: log.first);
@ -169,7 +169,7 @@ void main() {
walker.free();
});
test('successfully hides commit and its ancestors', () {
test('hides commit and its ancestors', () {
final walker = RevWalk(repo);
walker.push(repo[log.first]);
@ -265,7 +265,7 @@ void main() {
walker.free();
});
test('successfully resets walker', () {
test('resets walker', () {
final walker = RevWalk(repo);
final start = Oid.fromSHA(repo: repo, sha: log.first);