Skip to content

Commit 217401a

Browse files
test: update test message in stats/strided/distances/dcityblock
PR-URL: #10563 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent d7c9033 commit 217401a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/strided/distances/dcityblock/test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ tape( 'the function supports an `x` offset', function test( t ) {
128128

129129
// Test against textbook formula: 4+3+2=9
130130
d = dcityblock( 3, x, 2, 1, y, 1, 0 );
131-
t.strictEqual( isAlmostSameValue( d, 9.0, 0 ), true, 'returns expected value' + d );
131+
t.strictEqual( isAlmostSameValue( d, 9.0, 0 ), true, 'returns expected value' );
132132
t.end();
133133
});
134134

lib/node_modules/@stdlib/stats/strided/distances/dcityblock/test/test.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ tape( 'the function supports an `x` offset', opts, function test( t ) {
137137

138138
// Test against textbook formula: 4+3+2=9
139139
d = dcityblock( 3, x, 2, 1, y, 1, 0 );
140-
t.strictEqual( isAlmostSameValue( d, 9.0, 0 ), true, 'returns expected value' + d );
140+
t.strictEqual( isAlmostSameValue( d, 9.0, 0 ), true, 'returns expected value' );
141141
t.end();
142142
});
143143

0 commit comments

Comments
 (0)