Skip to content

Commit 27e2fc3

Browse files
committed
tests(library/math): renames numericCategory to numberTaxonomy
1 parent 3eea16a commit 27e2fc3

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/library/math/operator/predicate/isOperable.test.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
isOperable,
99
} from './isOperable';
1010

11-
const numericCategory = {
11+
const numberTaxonomy = {
1212
signed: {
1313
negative: /**/-1,
1414
positive: /**/+1,
@@ -31,19 +31,19 @@ const numericCategory = {
3131
} as const;
3232

3333
describe(isOperable, () => {
34-
const theSoleInoperableNumber = numericCategory.undefined;
34+
const theSoleInoperableNumber = numberTaxonomy.undefined;
3535

3636
const operableNumbers = [
37-
numericCategory.origin,
38-
numericCategory.signed.negative,
39-
numericCategory.signed.positive,
40-
numericCategory.fractional.rational,
41-
numericCategory.fractional.irrational,
42-
numericCategory.fractional.transcendental,
43-
numericCategory.infinite.positive,
44-
numericCategory.infinite.negative,
45-
numericCategory.runtime.min,
46-
numericCategory.runtime.max,
37+
numberTaxonomy.origin,
38+
numberTaxonomy.signed.negative,
39+
numberTaxonomy.signed.positive,
40+
numberTaxonomy.fractional.rational,
41+
numberTaxonomy.fractional.irrational,
42+
numberTaxonomy.fractional.transcendental,
43+
numberTaxonomy.infinite.positive,
44+
numberTaxonomy.infinite.negative,
45+
numberTaxonomy.runtime.min,
46+
numberTaxonomy.runtime.max,
4747
];
4848

4949
describe('the guaranteed behavior', () => {

0 commit comments

Comments
 (0)