Skip to content

Commit f7dfbfa

Browse files
committed
test: fix typo in test description
--- 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 c9c2744 commit f7dfbfa

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib
    • _tools/eslint/rules/require-order/test
    • assert/is-struct/test

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/require-order/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tape( 'main export is an object', function test( t ) {
4040
t.end();
4141
});
4242

43-
tape( 'the function positively validates code where all `require()` calls are sorted in a a specified order', function test( t ) {
43+
tape( 'the function positively validates code where all `require()` calls are sorted in a specified order', function test( t ) {
4444
var tester = new RuleTester();
4545

4646
try {

lib/node_modules/@stdlib/assert/is-struct/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ tape( 'the function returns `true` if provided a struct instance', function test
4949
t.end();
5050
});
5151

52-
tape( 'the function returns `false` if not provided a a `struct` instance', function test( t ) {
52+
tape( 'the function returns `false` if not provided a `struct` instance', function test( t ) {
5353
var values;
5454
var i;
5555

0 commit comments

Comments
 (0)