Skip to content

Commit 517a2be

Browse files
committed
test: remove duplicate tests
--- 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 --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: passed ---
1 parent fab60bb commit 517a2be

File tree

1 file changed

+0
-44
lines changed

1 file changed

+0
-44
lines changed

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

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -247,50 +247,6 @@ tape( 'the function supports a `zx` offset', function test( t ) {
247247
t.end();
248248
});
249249

250-
tape( 'the function supports a negative `zx` stride', function test( t ) {
251-
var expected;
252-
var viewX;
253-
var za;
254-
var zx;
255-
256-
zx = new Complex128Array([
257-
0.1, // 3
258-
0.1, // 3
259-
3.0,
260-
6.0,
261-
-0.6, // 2
262-
0.1, // 2
263-
4.0,
264-
7.0,
265-
0.1, // 1
266-
-0.3, // 1
267-
7.0,
268-
2.0
269-
]);
270-
za = new Complex128( 0.4, -0.7 );
271-
272-
zscal( 3, za, zx, -2, 4 );
273-
274-
viewX = new Float64Array( zx.buffer );
275-
expected = new Float64Array([
276-
0.11, // 3
277-
-0.03, // 3
278-
3.0,
279-
6.0,
280-
-0.17, // 2
281-
0.46, // 2
282-
4.0,
283-
7.0,
284-
-0.17, // 1
285-
-0.19, // 1
286-
7.0,
287-
2.0
288-
]);
289-
290-
isApprox( t, viewX, expected, 5.0 );
291-
t.end();
292-
});
293-
294250
tape( 'the function returns a reference to the input array', function test( t ) {
295251
var out;
296252
var za;

0 commit comments

Comments
 (0)