Skip to content

Commit 56d6e99

Browse files
authored
test: avoid using 32-bit assertion utility
Signed-off-by: Athan <kgryte@gmail.com>
1 parent c9b4bf3 commit 56d6e99

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • lib/node_modules/@stdlib/constants/float16/nan/test

lib/node_modules/@stdlib/constants/float16/nan/test/test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
// MODULES //
2222

2323
var tape = require( 'tape' );
24-
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
2524
var FLOAT16_NAN = require( './../lib' );
2625

2726

@@ -34,6 +33,6 @@ tape( 'main export is a number', function test( t ) {
3433
});
3534

3635
tape( 'export is equal to NaN', function test( t ) {
37-
t.strictEqual( isnanf( FLOAT16_NAN ), true, 'returns expected value' );
36+
t.notEqual( FLOAT16_NAN, FLOAT16_NAN, 'returns expected value' );
3837
t.end();
3938
});

0 commit comments

Comments
 (0)