Skip to content

Commit 1d9e0f7

Browse files
committed
test: fix comma position in expected value
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 8df8042 commit 1d9e0f7

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/string/remove-words/test

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/string/remove-words/test/test.cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ tape( 'the command-line interface supports use as a standard stream', opts, func
194194
'--words=little,too,late'
195195
];
196196

197-
expected = 'Hello, Sir!\n"Too , ," he said to me...\n';
197+
expected = 'Hello, Sir!\n"Too , ", he said to me...\n';
198198

199199
exec( cmd.join( ' ' ), done );
200200

@@ -222,7 +222,7 @@ tape( 'the command-line interface supports use as a standard stream (ignore-case
222222
'--ignore-case'
223223
];
224224

225-
expected = 'Hello, Sir!\n" , ," he said to me...\n';
225+
expected = 'Hello, Sir!\n" , ", he said to me...\n';
226226

227227
exec( cmd.join( ' ' ), done );
228228

0 commit comments

Comments
 (0)