Skip to content

Commit de7678a

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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent d5688cf commit de7678a

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/complex/base/assert/is-almost-equal/test

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/complex/base/assert/is-almost-equal/test/test.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ tape( 'the function returns `false` if provided `NaN` as either real or imaginar
7878
t.end();
7979
});
8080

81-
tape( 'the function returns `true` if provided two complex double-precision floating-point numbers which are the same value irrespective of the specified number of ULPs (float64)', function test( t ) {
81+
tape( 'the function returns `true` if provided two complex numbers which are the same value irrespective of the specified number of ULPs (float64)', function test( t ) {
8282
var z1;
8383
var z2;
8484

@@ -100,7 +100,7 @@ tape( 'the function returns `true` if provided two complex double-precision floa
100100
t.end();
101101
});
102102

103-
tape( 'the function returns `true` if provided two complex double-precision floating-point numbers which are the same value irrespective of the specified number of ULPs (float32)', function test( t ) {
103+
tape( 'the function returns `true` if provided two complex numbers which are the same value irrespective of the specified number of ULPs (float32)', function test( t ) {
104104
var z1;
105105
var z2;
106106

@@ -122,7 +122,7 @@ tape( 'the function returns `true` if provided two complex double-precision floa
122122
t.end();
123123
});
124124

125-
tape( 'the function returns `true` if provided two complex double-precision floating-point numbers which are approximately equal within a specified number of ULPs (float64)', function test( t ) {
125+
tape( 'the function returns `true` if provided two complex numbers which are approximately equal within a specified number of ULPs (float64)', function test( t ) {
126126
var z1;
127127
var z2;
128128

@@ -138,7 +138,7 @@ tape( 'the function returns `true` if provided two complex double-precision floa
138138
t.end();
139139
});
140140

141-
tape( 'the function returns `true` if provided two complex double-precision floating-point numbers which are approximately equal within a specified number of ULPs (float32)', function test( t ) {
141+
tape( 'the function returns `true` if provided two complex numbers which are approximately equal within a specified number of ULPs (float32)', function test( t ) {
142142
var z1;
143143
var z2;
144144

@@ -154,7 +154,7 @@ tape( 'the function returns `true` if provided two complex double-precision floa
154154
t.end();
155155
});
156156

157-
tape( 'the function returns `false` if provided two complex double-precision floating-point numbers which are not approximately equal within a specified number of ULPs (float64)', function test( t ) {
157+
tape( 'the function returns `false` if provided two complex numbers which are not approximately equal within a specified number of ULPs (float64)', function test( t ) {
158158
var z1;
159159
var z2;
160160

@@ -170,7 +170,7 @@ tape( 'the function returns `false` if provided two complex double-precision flo
170170
t.end();
171171
});
172172

173-
tape( 'the function returns `false` if provided two complex double-precision floating-point numbers which are not approximately equal within a specified number of ULPs (float32)', function test( t ) {
173+
tape( 'the function returns `false` if provided two complex numbers which are not approximately equal within a specified number of ULPs (float32)', function test( t ) {
174174
var z1;
175175
var z2;
176176

0 commit comments

Comments
 (0)