Skip to content

Commit

Permalink
test: fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
lpatiny committed May 14, 2024
1 parent 1074e27 commit 2348e66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/spectra/__tests__/getPostProcessedData.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ describe('getPostProcessedData', () => {
});
result.matrix = result.matrix.map((row) => Array.from(row));
expect(result.matrix).toStrictEqual([
[0, 0, 0],
[5, 5, 5],
[10, 10, 10],
[0, 2.5, 5],
[2.5, 5, 7.5],
[5, 7.5, 10],
]);
});

Expand Down

0 comments on commit 2348e66

Please sign in to comment.