Skip to content

Commit 151bd69

Browse files
committed
test: fix copy/paste typo in test title
1 parent eec56ca commit 151bd69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ test('Process rules in order and apply highest match', async t => {
234234
t.true(t.context.log.calledWith('Analysis of %s commits complete: %s release', 2, 'minor'));
235235
});
236236

237-
test('Process rules in order and apply highest match = require(config even if default has an higher match', async t => {
237+
test('Process rules in order and apply highest match from config even if default has an higher match', async t => {
238238
const commits = [
239239
{hash: '123', message: 'Chore: First chore (fixes #123)'},
240240
{hash: '456', message: 'Docs: update README (fixes #456) \n\n BREAKING CHANGE: break something'},
@@ -375,7 +375,7 @@ test('Throw error if "releaseRules" reference invalid commit type', async t => {
375375
});
376376
});
377377

378-
test('Re-Throw error = require("conventional-changelog-parser"', async t => {
378+
test('Re-Throw error from "conventional-changelog-parser"', async t => {
379379
const commits = [{message: 'Fix: First fix (fixes #123)'}, {message: 'Update: Second feature (fixes #456)'}];
380380
await t.throwsAsync(analyzeCommits({parserOpts: {headerPattern: '\\'}}, {cwd, commits, logger: t.context.logger}));
381381
});

0 commit comments

Comments
 (0)