Skip to content

Commit ce9463d

Browse files
committed
test: update test messages
1 parent 874a610 commit ce9463d

15 files changed

Lines changed: 15 additions & 15 deletions

File tree

lib/node_modules/@stdlib/constants/time/hours-in-day/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var HOURS_IN_DAY = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'the main export is a number', function test( t ) {
29+
tape( 'main export is a number', function test( t ) {
3030
t.ok( true, __filename );
3131
t.strictEqual( typeof HOURS_IN_DAY, 'number', 'main export is a number' );
3232
t.end();

lib/node_modules/@stdlib/constants/time/hours-in-week/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var HOURS_IN_WEEK = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'the main export is a number', function test( t ) {
29+
tape( 'main export is a number', function test( t ) {
3030
t.ok( true, __filename );
3131
t.strictEqual( typeof HOURS_IN_WEEK, 'number', 'main export is a number' );
3232
t.end();

lib/node_modules/@stdlib/constants/time/milliseconds-in-day/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var MILLISECONDS_IN_DAY = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'the main export is a number', function test( t ) {
29+
tape( 'main export is a number', function test( t ) {
3030
t.ok( true, __filename );
3131
t.strictEqual( typeof MILLISECONDS_IN_DAY, 'number', 'main export is a number' );
3232
t.end();

lib/node_modules/@stdlib/constants/time/milliseconds-in-hour/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var MILLISECONDS_IN_HOUR = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'the main export is a number', function test( t ) {
29+
tape( 'main export is a number', function test( t ) {
3030
t.ok( true, __filename );
3131
t.strictEqual( typeof MILLISECONDS_IN_HOUR, 'number', 'main export is a number' );
3232
t.end();

lib/node_modules/@stdlib/constants/time/milliseconds-in-minute/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var MILLISECONDS_IN_MINUTE = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'the main export is a number', function test( t ) {
29+
tape( 'main export is a number', function test( t ) {
3030
t.ok( true, __filename );
3131
t.strictEqual( typeof MILLISECONDS_IN_MINUTE, 'number', 'main export is a number' );
3232
t.end();

lib/node_modules/@stdlib/constants/time/milliseconds-in-second/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var MILLISECONDS_IN_SECOND = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'the main export is a number', function test( t ) {
29+
tape( 'main export is a number', function test( t ) {
3030
t.ok( true, __filename );
3131
t.strictEqual( typeof MILLISECONDS_IN_SECOND, 'number', 'main export is a number' );
3232
t.end();

lib/node_modules/@stdlib/constants/time/milliseconds-in-week/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var MILLISECONDS_IN_WEEK = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'the main export is a number', function test( t ) {
29+
tape( 'main export is a number', function test( t ) {
3030
t.ok( true, __filename );
3131
t.strictEqual( typeof MILLISECONDS_IN_WEEK, 'number', 'main export is a number' );
3232
t.end();

lib/node_modules/@stdlib/constants/time/minutes-in-day/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var MINUTES_IN_DAY = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'the main export is a number', function test( t ) {
29+
tape( 'main export is a number', function test( t ) {
3030
t.ok( true, __filename );
3131
t.strictEqual( typeof MINUTES_IN_DAY, 'number', 'main export is a number' );
3232
t.end();

lib/node_modules/@stdlib/constants/time/minutes-in-hour/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var MINUTES_IN_HOUR = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'the main export is a number', function test( t ) {
29+
tape( 'main export is a number', function test( t ) {
3030
t.ok( true, __filename );
3131
t.strictEqual( typeof MINUTES_IN_HOUR, 'number', 'main export is a number' );
3232
t.end();

lib/node_modules/@stdlib/constants/time/minutes-in-week/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var MINUTES_IN_WEEK = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'the main export is a number', function test( t ) {
29+
tape( 'main export is a number', function test( t ) {
3030
t.ok( true, __filename );
3131
t.strictEqual( typeof MINUTES_IN_WEEK, 'number', 'main export is a number' );
3232
t.end();

0 commit comments

Comments
 (0)