From 3438ec5c791776b32dc303dd11187a9c30e0f08a Mon Sep 17 00:00:00 2001 From: Pierre Vanduynslager Date: Fri, 18 Oct 2019 14:26:29 -0400 Subject: [PATCH] test: fix typo in test examples --- test/get-git-auth-url.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/get-git-auth-url.test.js b/test/get-git-auth-url.test.js index b0db1cd137..4401e34bbd 100644 --- a/test/get-git-auth-url.test.js +++ b/test/get-git-auth-url.test.js @@ -70,8 +70,8 @@ test('Convert shorthand URL', async t => { const {cwd} = await gitRepo(); t.is( - await getAuthUrl({cwd, env, options: {repositoryUrl: 'semanitc-release/semanitc-release'}}), - 'https://github.com/semanitc-release/semanitc-release.git' + await getAuthUrl({cwd, env, options: {repositoryUrl: 'semantic-release/semantic-release'}}), + 'https://github.com/semantic-release/semantic-release.git' ); }); @@ -82,9 +82,9 @@ test('Convert GitLab shorthand URL', async t => { await getAuthUrl({ cwd, env, - options: {branch: 'master', repositoryUrl: 'gitlab:semanitc-release/semanitc-release'}, + options: {branch: 'master', repositoryUrl: 'gitlab:semantic-release/semantic-release'}, }), - 'https://gitlab.com/semanitc-release/semanitc-release.git' + 'https://gitlab.com/semantic-release/semantic-release.git' ); });