Skip to content

Commit 434754f

Browse files
committed
Remove unused shell-quote
1 parent 3e93e3f commit 434754f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/package.test.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import { XMLManifest, parseXmlManifest, parseContentTypes } from '../xml';
2525
import { flatten, log } from '../util';
2626
import { validatePublisher } from '../validation';
2727
import * as jsonc from 'jsonc-parser';
28-
import { quote } from 'shell-quote';
2928

3029
// don't warn in tests
3130
console.warn = () => null;
@@ -3008,7 +3007,7 @@ describe('version', function () {
30083007
const commitMessage = 'test commit message';
30093008
await versionBump({ cwd, version: '1.1.1', commitMessage });
30103009

3011-
assert.deepStrictEqual(git(['show', '-s', '--format=%B', 'HEAD']).stdout, `${quote([commitMessage])}\n\n`);
3010+
assert.deepStrictEqual(git(['show', '-s', '--format=%B', 'HEAD']).stdout, `${commitMessage}\n\n`);
30123011
});
30133012

30143013
it('should not create git tag and commit', async () => {

0 commit comments

Comments
 (0)