Skip to content

Commit ddcd27d

Browse files
committed
chore: add negative spacing
--- 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 5e43cfb commit ddcd27d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/special/frexpf/test/test.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ tape( 'if provided `+0`, the function returns `[0,0]`', function test( t ) {
195195
out = new Float32Array( 2 );
196196
f = frexpf( 0.0, out, 1, 0 );
197197
t.strictEqual( f, out, 'returns output array' );
198-
t.deepEqual( f, [0.0, 0], 'returns expected value' );
198+
t.deepEqual( f, [ 0.0, 0 ], 'returns expected value' );
199199
t.end();
200200
});
201201

lib/node_modules/@stdlib/math/base/special/frexpf/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ tape( 'the absolute value of the normalized fraction is on the interval `[1/2,1)
172172

173173
tape( 'if provided `+0`, the function returns `[0,0]`', function test( t ) {
174174
var f = frexpf( 0.0 );
175-
t.deepEqual( f, [0.0, 0], 'returns expected value' );
175+
t.deepEqual( f, [ 0.0, 0 ], 'returns expected value' );
176176
t.end();
177177
});
178178

lib/node_modules/@stdlib/math/base/special/frexpf/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ tape( 'the absolute value of the normalized fraction is on the interval `[1/2,1)
181181

182182
tape( 'if provided `+0`, the function returns `[0,0]`', opts, function test( t ) {
183183
var f = frexpf( 0.0 );
184-
t.deepEqual( f, [0.0, 0], 'returns expected value' );
184+
t.deepEqual( f, [ 0.0, 0 ], 'returns expected value' );
185185
t.end();
186186
});
187187

0 commit comments

Comments
 (0)