Skip to content

Commit 90b8f5a

Browse files
committed
test: update test messages
--- 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 dbd1959 commit 90b8f5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/dstructs/named-typed-tuple/test/test.copy_within.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ tape( 'a tuple has a `copyWithin` method for copying a sequence of tuple element
4141
Point = namedtypedtuple( [ 'x', 'y' ] );
4242
p = new Point();
4343

44-
t.strictEqual( hasProp( p, 'copyWithin' ), true, 'has property' );
45-
t.strictEqual( isFunction( p.copyWithin ), true, 'has method' );
44+
t.strictEqual( hasProp( p, 'copyWithin' ), true, 'returns expected value' );
45+
t.strictEqual( isFunction( p.copyWithin ), true, 'returns expected value' );
4646
t.end();
4747
});
4848

49-
tape( 'the method throws an error if invoked with a `this` context which is not a typed array instance', function test( t ) {
49+
tape( 'the method throws an error if invoked with a `this` context which is not a tuple instance', function test( t ) {
5050
var values;
5151
var Point;
5252
var p;
@@ -78,7 +78,7 @@ tape( 'the method throws an error if invoked with a `this` context which is not
7878
}
7979
});
8080

81-
tape( 'the method throws an error if invoked with a `this` context which is not a typed array instance (end)', function test( t ) {
81+
tape( 'the method throws an error if invoked with a `this` context which is not a tuple instance (end)', function test( t ) {
8282
var values;
8383
var Point;
8484
var p;

0 commit comments

Comments
 (0)