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 Oct 5, 2023
1 parent 32c263c commit bfee5ba
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 21 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
},
"dependencies": {
"@stdlib/math-base-assert-is-integer": "^0.1.0",
"@stdlib/math-base-assert-is-nan": "^0.1.0",
"@stdlib/math-base-assert-is-nan": "^0.1.1",
"@stdlib/types": "^0.1.0",
"@stdlib/utils-constant-function": "^0.1.0",
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.0"
"@stdlib/utils-constant-function": "^0.1.1",
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1"
},
"devDependencies": {
"@stdlib/bench": "^0.1.0",
"@stdlib/constants-float64-eps": "^0.1.0",
"@stdlib/constants-float64-eps": "^0.1.1",
"@stdlib/math-base-special-abs": "^0.1.0",
"@stdlib/random-base-discrete-uniform": "^0.1.0",
"@stdlib/random-base-randu": "^0.1.0",
Expand Down
32 changes: 16 additions & 16 deletions test/dist/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,27 @@ var normhermitepoly = require( './../../dist' );

// FIXTURES //

var random2 = require( './../..xtures/python/random2.json' );
var random2 = require( './../fixtures/python/random2.json' );

var mediumNegative1 = require( './../..xtures/python/medium_negative_1.json' );
var mediumNegative2 = require( './../..xtures/python/medium_negative_2.json' );
var mediumNegative5 = require( './../..xtures/python/medium_negative_5.json' );
var mediumNegative1 = require( './../fixtures/python/medium_negative_1.json' );
var mediumNegative2 = require( './../fixtures/python/medium_negative_2.json' );
var mediumNegative5 = require( './../fixtures/python/medium_negative_5.json' );

var mediumPositive1 = require( './../..xtures/python/medium_positive_1.json' );
var mediumPositive2 = require( './../..xtures/python/medium_positive_2.json' );
var mediumPositive5 = require( './../..xtures/python/medium_positive_5.json' );
var mediumPositive1 = require( './../fixtures/python/medium_positive_1.json' );
var mediumPositive2 = require( './../fixtures/python/medium_positive_2.json' );
var mediumPositive5 = require( './../fixtures/python/medium_positive_5.json' );

var smallPositive1 = require( './../..xtures/python/small_positive_1.json' );
var smallPositive2 = require( './../..xtures/python/small_positive_2.json' );
var smallPositive5 = require( './../..xtures/python/small_positive_5.json' );
var smallPositive1 = require( './../fixtures/python/small_positive_1.json' );
var smallPositive2 = require( './../fixtures/python/small_positive_2.json' );
var smallPositive5 = require( './../fixtures/python/small_positive_5.json' );

var smallNegative1 = require( './../..xtures/python/small_negative_1.json' );
var smallNegative2 = require( './../..xtures/python/small_negative_2.json' );
var smallNegative5 = require( './../..xtures/python/small_negative_5.json' );
var smallNegative1 = require( './../fixtures/python/small_negative_1.json' );
var smallNegative2 = require( './../fixtures/python/small_negative_2.json' );
var smallNegative5 = require( './../fixtures/python/small_negative_5.json' );

var tiny1 = require( './../..xtures/python/tiny_1.json' );
var tiny2 = require( './../..xtures/python/tiny_2.json' );
var tiny5 = require( './../..xtures/python/tiny_5.json' );
var tiny1 = require( './../fixtures/python/tiny_1.json' );
var tiny2 = require( './../fixtures/python/tiny_2.json' );
var tiny5 = require( './../fixtures/python/tiny_5.json' );


// TESTS //
Expand Down

0 comments on commit bfee5ba

Please sign in to comment.