Skip to content

Commit 99d56c1

Browse files
committed
test: remove duplicate
--- 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 d7fb24e commit 99d56c1

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

lib/node_modules/@stdlib/blas/base/icamax/test/test.ndarray.js

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -112,26 +112,6 @@ tape( 'if provided an `N` parameter equal to `1`, the function returns `0`', fun
112112
t.end();
113113
});
114114

115-
tape( 'the function supports accessing elements in reverse order', function test( t ) {
116-
var idx;
117-
var x;
118-
119-
x = new Complex64Array( [ 3.0, -4.0, 1.0, 15.0, 4.0, 3.0 ] );
120-
121-
idx = icamax( x.length, x, -1, x.length-1 );
122-
t.strictEqual( idx, 1, 'returns expected value' );
123-
124-
idx = icamax( 2, x, -1, x.length-2 );
125-
t.strictEqual( idx, 0, 'returns expected value' );
126-
127-
// eslint-disable-next-line max-len
128-
x = new Complex64Array( [ 0.1, 4.0, 999.0, 999.0, -0.3, 6.0, 999.0, 999.0, -0.5, 7.0, 999.0, 999.0, -0.1, 3.0 ] );
129-
idx = icamax( 4, x, -2, x.length-1 );
130-
t.strictEqual( idx, 1, 'returns expected value' );
131-
132-
t.end();
133-
});
134-
135115
tape( 'the function supports specifying a stride', function test( t ) {
136116
var expected;
137117
var idx;

0 commit comments

Comments
 (0)