Skip to content

Commit bf13b2e

Browse files
committed
test: fix descriptions
--- 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 2f5f302 commit bf13b2e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/ndarray/any/test/test.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ tape( 'the function throws an error if provided an options argument which is not
209209
}
210210
});
211211

212-
tape( 'the function throws an error if provided an options argument with invalid `dims` property', function test( t ) {
212+
tape( 'the function throws an error if provided an options argument with an invalid `dims` property', function test( t ) {
213213
var values;
214214
var x;
215215
var y;

lib/node_modules/@stdlib/ndarray/any/test/test.main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ tape( 'the function throws an error if provided an options argument with a `dims
192192
}
193193
});
194194

195-
tape( 'the function throws an error if provided an options argument with `dims` property which contains duplicate dimensions', function test( t ) {
195+
tape( 'the function throws an error if provided an options argument with a `dims` property which contains duplicate dimensions', function test( t ) {
196196
var values;
197197
var x;
198198
var i;
@@ -221,7 +221,7 @@ tape( 'the function throws an error if provided an options argument with `dims`
221221
}
222222
});
223223

224-
tape( 'the function throws an error if provided an options argument with `dims` property which contains more dimensions than are present in the input ndarray', function test( t ) {
224+
tape( 'the function throws an error if provided an options argument with a `dims` property which contains more dimensions than are present in the input ndarray', function test( t ) {
225225
var values;
226226
var x;
227227
var i;
@@ -251,7 +251,7 @@ tape( 'the function throws an error if provided an options argument with `dims`
251251
}
252252
});
253253

254-
tape( 'the function throws an error if provided an options argument with invalid `keepdims` property', function test( t ) {
254+
tape( 'the function throws an error if provided an options argument with an invalid `keepdims` property', function test( t ) {
255255
var values;
256256
var x;
257257
var i;

0 commit comments

Comments
 (0)