aboutsummaryrefslogtreecommitdiffstats
path: root/changelog.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'changelog.spec.js')
-rw-r--r--changelog.spec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/changelog.spec.js b/changelog.spec.js
index 1d3b7fe8..595ed84d 100644
--- a/changelog.spec.js
+++ b/changelog.spec.js
@@ -34,10 +34,10 @@ describe('changelog.js', function() {
'13f31602f396bc269076ab4d389cfd8ca94b20ba\n' +
'feat(ng-list): Allow custom separator\n' +
'bla bla bla\n\n' +
- 'Breaks first breaking change\nsomething else\n' +
- 'Breaks another breaking change\n');
+ 'BREAKING CHANGE: first breaking change\nsomething else\n' +
+ 'another line with more info\n');
- expect(msg.breaks).toEqual(['first breaking change', 'another breaking change']);
+ expect(msg.breaking).toEqual(' first breaking change\nsomething else\nanother line with more info\n');
});
});
});