Skip to content

Commit 9da343f

Browse files
fix: CI errors
1 parent 40a1be2 commit 9da343f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/beta/logpdf/benchmark/benchmark.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@ var resolve = require( 'path' ).resolve;
2424
var bench = require( '@stdlib/bench' );
2525
var randu = require( '@stdlib/random/base/randu' );
2626
var isnan = require( '@stdlib/math/base/assert/is-nan' );
27-
var resolve = require( 'path' ).resolve;
27+
var tryRequire = require( '@stdlib/utils/try-require' );
2828
var EPS = require( '@stdlib/constants/float64/eps' );
2929
var pkg = require( './../package.json' ).name;
3030

lib/node_modules/@stdlib/stats/base/dists/beta/logpdf/test/test.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@
2323
var resolve = require( 'path' ).resolve;
2424
var tape = require( 'tape' );
2525
var isnan = require( '@stdlib/math/base/assert/is-nan' );
26-
var resolve = require( 'path' ).resolve;
26+
var tryRequire = require( '@stdlib/utils/try-require' );
2727
var abs = require( '@stdlib/math/base/special/abs' );
2828
var ln = require( '@stdlib/math/base/special/ln' );
2929
var PINF = require( '@stdlib/constants/float64/pinf' );

0 commit comments

Comments
 (0)