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 Aug 2, 2023
1 parent 1b270d9 commit 525b521
Show file tree
Hide file tree
Showing 17 changed files with 20 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/productionize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ jobs:
# Send status to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down Expand Up @@ -520,7 +520,7 @@ jobs:
# Send status to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down Expand Up @@ -697,7 +697,7 @@ jobs:
# Send status to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ jobs:
# Send status to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
# Send status to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_bundles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
# Send notification to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
# Send notification to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
# Send notification to Slack channel if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
# Send Slack notification if job fails:
- name: 'Send status to Slack channel in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

# Send Slack notification if job fails:
- name: 'Send notification to Slack in case of failure'
uses: act10ns/slack@v1
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
Expand Down
2 changes: 1 addition & 1 deletion base/assert/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var ns = require( './../lib' );

tape( 'main export is an object', function test( t ) {
t.ok( true, __filename );
t.equal( typeof ns, 'object', 'main export is an object' );
t.strictEqual( typeof ns, 'object', 'main export is an object' );
t.end();
});

Expand Down
1 change: 0 additions & 1 deletion base/ctor/benchmark/benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
// MODULES //

var bench = require( '@stdlib/bench' );
var isFunction = require( '@stdlib/assert/is-function' );
var randu = require( '@stdlib/random/base/randu' );
var floor = require( '@stdlib/math/base/special/floor' );
var pkg = require( './../package.json' ).name;
Expand Down
3 changes: 0 additions & 3 deletions base/ctor/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,6 @@ setReadOnlyAccessor( ndarray.prototype, 'offset', function get() {
*
* - The array order is either row-major (C-style) or column-major (Fortran-style).
*
*
* @name order
* @memberof ndarray.prototype
* @type {string}
Expand Down Expand Up @@ -525,7 +524,6 @@ setReadOnly( ndarray.prototype, 'iset', isetValue );
*
* - The method does **not** serialize data outside of the buffer region defined by the array configuration.
*
*
* @name toString
* @memberof ndarray.prototype
* @type {Function}
Expand All @@ -552,7 +550,6 @@ setReadOnly( ndarray.prototype, 'toString', toString );
* - `JSON.stringify()` implicitly calls this method when stringifying an `ndarray` instance.
* - The method does **not** serialize data outside of the buffer region defined by the array configuration.
*
*
* @name toJSON
* @memberof ndarray.prototype
* @type {Function}
Expand Down
1 change: 0 additions & 1 deletion base/ind2sub/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ var getSubscripts = require( './assign.js' );
*
* In short, from the perspective of a view, view data is always ordered.
*
*
* @param {NonNegativeIntegerArray} shape - array shape
* @param {IntegerArray} strides - stride array
* @param {NonNegativeInteger} offset - location of the first indexed value **based** on the stride array
Expand Down
2 changes: 1 addition & 1 deletion base/output-policy-enum2str/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@stdlib/ndarray/base/dtype-enum2str",
"name": "@stdlib/ndarray/base/output-policy-enum2str",
"version": "0.0.0",
"description": "Return the data type string associated with an ndarray data type enumeration constant.",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion base/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var ns = require( './../lib' );

tape( 'main export is an object', function test( t ) {
t.ok( true, __filename );
t.equal( typeof ns, 'object', 'main export is an object' );
t.strictEqual( typeof ns, 'object', 'main export is an object' );
t.end();
});

Expand Down
6 changes: 6 additions & 0 deletions dispatch/test/test.two_arrays.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ var sum = require( './fixtures/sum.js' );

// TESTS //

tape( 'main export is a function', function test( t ) {
t.ok( true, __filename );
t.strictEqual( typeof dispatch, 'function', 'main export is a function' );
t.end();
});

tape( 'the function returns a function which throws an error if not provided an ndarray for the first argument', function test( t ) {
var values;
var types;
Expand Down
1 change: 0 additions & 1 deletion ind2sub/lib/assign.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ var validate = require( './validate.js' );
* - `wrap`: wrap around a linear index exceeding array dimensions using modulo arithmetic.
* - `clamp`: set a linear index exceeding array dimensions to either `0` (minimum linear index) or the maximum linear index.
*
*
* @param {NonNegativeIntegerArray} shape - array shape
* @param {integer} idx - linear index
* @param {Options} [options] - function options
Expand Down
1 change: 0 additions & 1 deletion ind2sub/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ var validate = require( './validate.js' );
* - `wrap`: wrap around a linear index exceeding array dimensions using modulo arithmetic.
* - `clamp`: set a linear index exceeding array dimensions to either `0` (minimum linear index) or the maximum linear index.
*
*
* @param {NonNegativeIntegerArray} shape - array shape
* @param {integer} idx - linear index
* @param {Options} [options] - function options
Expand Down
1 change: 0 additions & 1 deletion sub2ind/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ var validate = require( './validate.js' );
*
* - If provided fewer modes than dimensions, the function recycles modes using modulo arithmetic.
*
*
* @param {NonNegativeIntegerArray} shape - array shape
* @param {...integer} i - subscripts
* @param {Options} [options] - function options
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var ns = require( './../lib' );

tape( 'main export is an object', function test( t ) {
t.ok( true, __filename );
t.equal( typeof ns, 'object', 'main export is an object' );
t.strictEqual( typeof ns, 'object', 'main export is an object' );
t.end();
});

Expand Down

0 comments on commit 525b521

Please sign in to comment.