Skip to content

Commit 66db54e

Browse files
committed
Fix wrong test mock data
1 parent e447b3d commit 66db54e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/Gren.spec.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -424,10 +424,10 @@ describe('Gren', () => {
424424
}
425425
},
426426
{
427-
author: {
428-
name: 'Alex Canessa'
429-
},
430427
commit: {
428+
author: {
429+
name: 'Alex Canessa'
430+
},
431431
message: 'Two'
432432
},
433433
author: {
@@ -535,7 +535,7 @@ describe('Gren', () => {
535535
fs.unlinkSync(gren.options.changelogFilename);
536536
}
537537
});
538-
})
538+
});
539539

540540
describe('_validateRequiredTagsExists', () => {
541541
it('should failed if one tag is missing', () => {
@@ -556,7 +556,7 @@ describe('Gren', () => {
556556
});
557557

558558
describe('Tests that require network', () => {
559-
before(function (done) {
559+
before(function(done) {
560560
gren._hasNetwork()
561561
.then(isOnline => {
562562
if (!isOnline) {

0 commit comments

Comments
 (0)