From 0383dec6433c4169251c4a24029e42439717c1c1 Mon Sep 17 00:00:00 2001 From: Paul Hatcherian <1835615+PaulHatch@users.noreply.github.com> Date: Tue, 6 Oct 2020 20:50:09 -0400 Subject: [PATCH] Use double quote for test commit messages --- index.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.test.js b/index.test.js index 662133e..29fefbd 100644 --- a/index.test.js +++ b/index.test.js @@ -38,7 +38,7 @@ const createTestRepo = (inputs) => { makeCommit: (msg, path) => { run(`touch ${path !== undefined ? path.trim('/') + '/' : ''}test${i++}`); run(`git add --all`); - run(`git commit -m '${msg}'`); + run(`git commit -m "${msg}"`); }, runAction: (inputs) => run(`node ${path.join(__dirname, 'index.js')}`, inputs), exec: run