Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Jun 19, 2024
1 parent 6160b98 commit 5e69351
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ test('CPUAggregator#1D', t => {
// {age: 44, household: 4, income: 500, education: 4},
t.deepEqual(
aggregator.getBin(5),
{id: [8], count: 3, value: [3, 250, 5], points: [16, 17, 18]},
{id: [8], count: 3, value: [3, 250, 5], pointIndices: [16, 17, 18]},
'getBin()'
);

Expand Down Expand Up @@ -167,7 +167,7 @@ test('CPUAggregator#2D', t => {
// {age: 44, household: 4, income: 500, education: 4},
t.deepEqual(
aggregator.getBin(6),
{id: [4, 4], count: 2, value: [2, 320], points: [16, 18]},
{id: [4, 4], count: 2, value: [2, 320], pointIndices: [16, 18]},
'getBin()'
);

Expand Down

0 comments on commit 5e69351

Please sign in to comment.