From 87859b4ea2bf6f67ef40b1ccb6407482a34c2723 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Mon, 24 Jul 2023 15:24:24 +0000 Subject: [PATCH] Auto-generated commit --- CONTRIBUTORS | 7 ++++--- test/test.js | 2 +- test/test.native.js | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 2ce52c4..93c4bde 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3,11 +3,14 @@ # Contributors listed in alphabetical order. Ali Salesi +Amit Jimiwal Athan Reines Brendan Graetz Bruno Fenzl Christopher Dambamuromo +Dan Rose Dominik Moritz +Dorrin Sotoudeh Frank Kovacs Harshita Kalani James Gelok @@ -16,12 +19,12 @@ Joey Reed Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com> Joris Labie Justin Dennison -Nithin Katta <88046362+nithinkatta@users.noreply.github.com> Marcus Fantham Matt Cochrane Milan Raj Momtchil Momtchev Naresh Jagadeesan +Nithin Katta <88046362+nithinkatta@users.noreply.github.com> Ognjen Jevremović Philipp Burckhardt Pranav Goswami @@ -32,7 +35,5 @@ Seyyed Parsa Neshaei Shraddheya Shendre Stephannie Jiménez Gacha Yernar Yergaziyev -Dorrin Sotoudeh -Amit Jimiwal orimiles5 <97595296+orimiles5@users.noreply.github.com> rei2hu diff --git a/test/test.js b/test/test.js index 93fcf5a..8da5586 100644 --- a/test/test.js +++ b/test/test.js @@ -45,7 +45,7 @@ var subnormal = require( './fixtures/julia/subnormal.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof rsqrt, 'function', 'main export is a function' ); + t.strictEqual( typeof rsqrt, 'function', 'main export is a function' ); t.end(); }); diff --git a/test/test.native.js b/test/test.native.js index b0c761d..3ab64cd 100644 --- a/test/test.native.js +++ b/test/test.native.js @@ -54,7 +54,7 @@ var opts = { tape( 'main export is a function', opts, function test( t ) { t.ok( true, __filename ); - t.equal( typeof rsqrt, 'function', 'main export is a function' ); + t.strictEqual( typeof rsqrt, 'function', 'main export is a function' ); t.end(); });