mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-04 20:29:08 -04:00
style: clean up tests names
This commit is contained in:
parent
41fab98d17
commit
c516119397
33 changed files with 212 additions and 223 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue