Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 1, 2024
1 parent ee05ee1 commit 2228d13
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions broadcast-arrays/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ tape( 'main export is a function', function test( t ) {
t.end();
});

tape( 'the function throws an error if a first argument which is not an ndarray or an array-like object containing ndarrays', function test( t ) {
tape( 'the function throws an error if provided a first argument which is not an ndarray or an array-like object containing ndarrays', function test( t ) {
var values;
var i;

Expand Down Expand Up @@ -65,7 +65,7 @@ tape( 'the function throws an error if a first argument which is not an ndarray
}
});

tape( 'the function throws an error if a second argument which is not an ndarray', function test( t ) {
tape( 'the function throws an error if provided a second argument which is not an ndarray', function test( t ) {
var values;
var x;
var i;
Expand Down Expand Up @@ -96,7 +96,7 @@ tape( 'the function throws an error if a second argument which is not an ndarray
}
});

tape( 'the function throws an error if a third argument which is not an ndarray', function test( t ) {
tape( 'the function throws an error if provided a third argument which is not an ndarray', function test( t ) {
var values;
var x;
var i;
Expand Down Expand Up @@ -127,7 +127,7 @@ tape( 'the function throws an error if a third argument which is not an ndarray'
}
});

tape( 'the function throws an error if a fourth argument which is not an ndarray', function test( t ) {
tape( 'the function throws an error if provided a fourth argument which is not an ndarray', function test( t ) {
var values;
var x;
var i;
Expand Down Expand Up @@ -158,7 +158,7 @@ tape( 'the function throws an error if a fourth argument which is not an ndarray
}
});

tape( 'the function throws an error if a fifth argument which is not an ndarray', function test( t ) {
tape( 'the function throws an error if provided a fifth argument which is not an ndarray', function test( t ) {
var values;
var x;
var i;
Expand Down
10 changes: 5 additions & 5 deletions maybe-broadcast-arrays/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ tape( 'main export is a function', function test( t ) {
t.end();
});

tape( 'the function throws an error if a first argument which is not an ndarray or an array-like object containing ndarrays', function test( t ) {
tape( 'the function throws an error if provided a first argument which is not an ndarray or an array-like object containing ndarrays', function test( t ) {
var values;
var i;

Expand Down Expand Up @@ -65,7 +65,7 @@ tape( 'the function throws an error if a first argument which is not an ndarray
}
});

tape( 'the function throws an error if a second argument which is not an ndarray', function test( t ) {
tape( 'the function throws an error if provided a second argument which is not an ndarray', function test( t ) {
var values;
var x;
var i;
Expand Down Expand Up @@ -96,7 +96,7 @@ tape( 'the function throws an error if a second argument which is not an ndarray
}
});

tape( 'the function throws an error if a third argument which is not an ndarray', function test( t ) {
tape( 'the function throws an error if provided a third argument which is not an ndarray', function test( t ) {
var values;
var x;
var i;
Expand Down Expand Up @@ -127,7 +127,7 @@ tape( 'the function throws an error if a third argument which is not an ndarray'
}
});

tape( 'the function throws an error if a fourth argument which is not an ndarray', function test( t ) {
tape( 'the function throws an error if provided a fourth argument which is not an ndarray', function test( t ) {
var values;
var x;
var i;
Expand Down Expand Up @@ -158,7 +158,7 @@ tape( 'the function throws an error if a fourth argument which is not an ndarray
}
});

tape( 'the function throws an error if a fifth argument which is not an ndarray', function test( t ) {
tape( 'the function throws an error if provided a fifth argument which is not an ndarray', function test( t ) {
var values;
var x;
var i;
Expand Down

0 comments on commit 2228d13

Please sign in to comment.