Skip to content

Commit 1d23095

Browse files
committed
test: fix tests
1 parent 2380013 commit 1d23095

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/array/base/at5d/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/array/base/at5d/docs/types/test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ import at5d = require( './index' );
3636
at5d( false, 0, 0, 0, 0, 0 ); // $ExpectError
3737
at5d( null, 0, 0, 0, 0, 0 ); // $ExpectError
3838
at5d( void 0, 0, 0, 0, 0, 0 ); // $ExpectError
39-
at5d( {}, 0, 0, 0 ); // $ExpectError
40-
at5d( ( x: number ): number => x, 0, 0, 0, 0, 0, 0 ); // $ExpectError
39+
at5d( {}, 0, 0, 0, 0, 0 ); // $ExpectError
40+
at5d( ( x: number ): number => x, 0, 0, 0, 0, 0 ); // $ExpectError
4141
}
4242

4343
// The compiler throws an error if the function is provided a second argument which is not a number...

0 commit comments

Comments
 (0)