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

@ -51,7 +51,7 @@ void main() {
expect(() => repo.notes, throwsA(isA<LibGit2Error>()));
});
test('successfully lookups note', () {
test('lookups note', () {
final head = repo.head;
final note = repo.lookupNote(annotatedOid: head.target);
@ -63,7 +63,7 @@ void main() {
head.free();
});
test('successfully creates note', () {
test('creates note', () {
final signature = Signature.create(
name: 'Author',
email: 'author@email.com',
@ -99,7 +99,7 @@ void main() {
);
});
test('successfully deletes note', () {
test('deletes note', () {
final signature = Signature.create(
name: 'Author',
email: 'author@email.com',