Skip to content

Commit 25cdee2

Browse files
committed
test: fix lengths
1 parent ba4db18 commit 25cdee2

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/array/base/join/test

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/array/base/join/test/test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ tape( 'the function joins an array-like object (array-like)', function test( t )
269269
t.strictEqual( actual, expected, 'returns expected value' );
270270

271271
x = {
272-
'length': 4,
272+
'length': 1,
273273
'0': 1
274274
};
275275

@@ -279,7 +279,7 @@ tape( 'the function joins an array-like object (array-like)', function test( t )
279279
t.strictEqual( actual, expected, 'returns expected value' );
280280

281281
x = {
282-
'length': 4,
282+
'length': 1,
283283
'0': null
284284
};
285285

0 commit comments

Comments
 (0)