Fix some typos in the branch checks

This commit is contained in:
Josh Dales
2023-02-19 12:17:15 -05:00
parent 0eb9d49330
commit 09f085373a
4 changed files with 15 additions and 15 deletions

View File

@@ -21,8 +21,8 @@ describe('getBranchName', () => {
describe('when no branch is specified', () => {
it('returns the head branch name', () => {
const result = getBranchName('base');
expect(result).toEqual('base-branch-name');
const result = getBranchName();
expect(result).toEqual('head-branch-name');
});
});
});